Merge pull request #453 from owncloud/improve_action_bar_pr_392_with_develop
[pub/Android/ownCloud.git] / res / layout / failed_upload_files.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 ownCloud Android client application
4
5 Copyright (C) 2012 Bartek Przybylski
6 Copyright (C) 2012-2013 ownCloud Inc.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2,
10 as published by the Free Software Foundation.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 -->
20 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 android:layout_width="fill_parent"
22 android:layout_height="fill_parent"
23 android:background="@color/background_color"
24 android:orientation="vertical"
25 android:id="@+id/failed_files_list_view">
26
27 <LinearLayout
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:layout_gravity="right"
31 android:orientation="horizontal" >
32
33 </LinearLayout>
34
35 <LinearLayout
36 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
38 android:orientation="vertical" >
39
40 <LinearLayout
41 android:layout_width="match_parent"
42 android:layout_height="wrap_content" >
43
44 <TextView
45 android:id="@+id/failed_upload_headline_textview"
46 android:layout_width="wrap_content"
47 android:layout_height="wrap_content"
48 android:layout_weight="0.93"
49 android:hint="@string/failed_upload_headline_hint"
50 android:text="@string/failed_upload_headline_text" />
51
52 </LinearLayout>
53
54 <LinearLayout
55 android:layout_width="match_parent"
56 android:layout_height="wrap_content"
57 android:layout_gravity="bottom|right" >
58
59 <CheckBox
60 android:id="@+id/failed_upload_headline_cb"
61 android:layout_width="wrap_content"
62 android:layout_height="wrap_content"
63 android:text="@string/failed_upload_all_cb"
64 android:textSize="8sp" />
65
66 <Button
67 android:id="@+id/failed_upload_retry_all_btn"
68 android:layout_width="wrap_content"
69 android:layout_height="wrap_content"
70 android:minHeight="30dp"
71 android:minWidth="90dp"
72 android:text="@string/failed_upload_headline_retryall_btn"
73 android:textSize="8sp" />
74
75 <Button
76 android:id="@+id/failed_upload_delete_all_btn"
77 android:layout_width="wrap_content"
78 android:layout_height="wrap_content"
79 android:minHeight="30dp"
80 android:minWidth="90dp"
81 android:text="@string/failed_upload_headline_delete_all_btn"
82 android:textSize="8sp" />
83
84 </LinearLayout>
85
86 </LinearLayout>
87
88 <ScrollView
89 android:id="@+id/failedUploadScrollView"
90 android:layout_width="match_parent"
91 android:layout_height="match_parent"
92 android:overScrollMode="ifContentScrolls" >
93
94 <LinearLayout
95 android:id="@+id/failed_upload_scrollviewlayout"
96 android:layout_width="match_parent"
97 android:layout_height="wrap_content"
98 android:orientation="vertical">
99
100
101 </LinearLayout>
102 </ScrollView>
103
104 </LinearLayout>