Fix. Avoid load logs again when changing device orientation
[pub/Android/ownCloud.git] / res / layout / files_folder_picker.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:background="@color/background_color"
6 android:orientation="vertical" >
7
8 <FrameLayout
9 android:layout_width="match_parent"
10 android:layout_height="0dip"
11 android:layout_weight="1"
12 android:id="@+id/fragment_container" />
13
14 <LinearLayout
15 android:layout_width="match_parent"
16 android:layout_height="wrap_content"
17 android:gravity="center"
18 android:orientation="horizontal" >
19
20 <Button
21 android:id="@+id/folder_picker_btn_cancel"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:layout_weight="1"
25 android:text="@string/common_cancel" />
26
27 <Button
28 android:id="@+id/folder_picker_btn_choose"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:layout_weight="1"
32 android:text="@string/folder_picker_choose_button_text" />
33
34 </LinearLayout>
35
36 </LinearLayout>