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">
8 android:id="@+id/browser_header"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:orientation="horizontal">
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"/>
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"/>
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"/>
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">
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"/>
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"/>
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">