Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / android / source / res / layout / fragment_directory_browser.xml
blobfcf7fc6c9b4704b2b77c943b6860d41def50e463
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:orientation="vertical" android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:background="#FFFFFF">
7     <LinearLayout
8         android:id="@+id/browser_header"
9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:orientation="horizontal">
13         <ImageView
14             android:id="@+id/up_image"
15             android:layout_width="wrap_content"
16             android:layout_height="match_parent"
17             android:src="@drawable/ic_menu_back"
18             android:scaleType="fitCenter"
19             android:adjustViewBounds="true"
20             android:contentDescription="@string/up_description"/>
22         <EditText
23             android:id="@+id/directory_header"
24             android:layout_width="0dp"
25             android:layout_height="wrap_content"
26             android:layout_weight="1"
27             android:singleLine="true"
28             android:scrollHorizontally="true"
29             android:textAppearance="?android:attr/textAppearanceMedium"
30             android:inputType="text"/>
32         <Button
33             android:id="@+id/directory_search_button"
34             android:layout_width="wrap_content"
35             android:layout_height="match_parent"
36             android:text="@string/search_label"/>
38     </LinearLayout>
40     <LinearLayout
41         android:id="@+id/browser_footer"
42         android:layout_width="match_parent"
43         android:layout_height="wrap_content"
44         android:orientation="horizontal"
45         android:layout_alignParentBottom="true">
47         <Button
48             android:id="@+id/cancel_button"
49             android:layout_height="wrap_content"
50             android:layout_width="0dp"
51             android:layout_weight="1"
52             android:text="@string/cancel_label"/>
54         <Button
55             android:id="@+id/confirm_button"
56             android:layout_width="0dp"
57             android:layout_height="wrap_content"
58             android:layout_weight="1"
59             android:text="@string/confirm_label"/>
60     </LinearLayout>
62     <ListView
63         android:id="@+id/directory_list"
64         android:layout_width="match_parent"
65         android:layout_height="wrap_content"
66         android:layout_below="@id/browser_header"
67         android:layout_above="@id/browser_footer">
68     </ListView>
71 </RelativeLayout>