f09239f301dbcf73f086c1ae20e9e503fe9e65fc
1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <RelativeLayout xmlns:
android=
"http://schemas.android.com/apk/res/android"
3 android:
layout_width=
"match_parent"
4 android:
layout_height=
"match_parent"
8 android:
id=
"@+id/button_refresh"
9 style=
"@style/ButtonStyle"
10 android:
layout_alignParentLeft=
"true"
11 android:
layout_alignParentTop=
"true"
12 android:
text=
"@string/refresh"
13 android:
onClick=
"onClickHandler"
17 android:
id=
"@+id/list_view"
18 android:
layout_width=
"match_parent"
19 android:
layout_height=
"wrap_content"
20 android:
layout_below=
"@+id/button_refresh"
21 android:
layout_above=
"@+id/button_upload"
22 android:
layout_alignParentLeft=
"true"
23 android:
layout_alignParentRight=
"true"
28 android:
id=
"@+id/button_upload"
29 style=
"@style/ButtonStyle"
30 android:
layout_alignParentLeft=
"true"
31 android:
layout_above=
"@+id/frame"
32 android:
text=
"@string/upload"
33 android:
onClick=
"onClickHandler"
37 android:
id=
"@+id/upload_progress"
38 style=
"@style/ProgressStyle"
39 android:
layout_below=
"@id/list_view"
40 android:
layout_above=
"@id/frame"
41 android:
layout_toRightOf=
"@id/button_upload"
42 android:
layout_toLeftOf=
"@+id/button_delete_remote"
43 android:
gravity=
"center"
44 android:
textSize=
"14sp"
49 android:
id=
"@id/button_delete_remote"
50 style=
"@style/ButtonStyle"
51 android:
layout_alignParentRight=
"true"
52 android:
layout_above=
"@id/frame"
53 android:
text=
"@string/delete_remote_file"
54 android:
onClick=
"onClickHandler"
58 android:
id=
"@id/frame"
59 android:
layout_width=
"match_parent"
60 android:
layout_height=
"@dimen/frame_height"
61 android:
layout_alignParentLeft=
"true"
62 android:
layout_alignParentRight=
"true"
63 android:
layout_above=
"@+id/button_download"
68 android:
id=
"@id/button_download"
69 style=
"@style/ButtonStyle"
70 android:
layout_alignParentBottom=
"true"
71 android:
layout_alignParentLeft=
"true"
72 android:
text=
"@string/download"
73 android:
onClick=
"onClickHandler"
77 android:
id=
"@+id/download_progress"
78 style=
"@style/ProgressStyle"
79 android:
layout_below=
"@id/frame"
80 android:
layout_alignParentBottom=
"true"
81 android:
layout_toRightOf=
"@id/button_download"
82 android:
layout_toLeftOf=
"@+id/button_delete_local"
83 android:
gravity=
"center"
84 android:
textSize=
"14sp"
89 android:
id=
"@id/button_delete_local"
90 style=
"@style/ButtonStyle"
91 android:
layout_alignParentBottom=
"true"
92 android:
layout_alignParentRight=
"true"
93 android:
text=
"@string/delete_local_file"
94 android:
onClick=
"onClickHandler"