blob: ca7c6c843d37c1a4f83f2a53a97c6b76587aec77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="?background_color"
android:orientation="vertical"
tools:context=".files.SimpleDirChooser" >
<LinearLayout
android:id="@+id/headerLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout style="@style/separator_horizontal_layout" >
<View style="@style/separator_horizontal" />
<TextView
style="@style/separator_horizontal_headline"
android:text="@string/simple_dir_chooser_title" />
</RelativeLayout>
<EditText
android:id="@+id/simple_dir_chooser_path"
style="@style/edittext_full"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:inputType="textNoSuggestions"
android:lines="0"
android:scrollHorizontally="true"
android:singleLine="true" />
</LinearLayout>
<LinearLayout
android:id="@+id/buttonLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:baselineAligned="false"
android:orientation="horizontal"
android:paddingTop="10dip" >
<Button
android:id="@+id/simple_dir_chooser_cancel"
style="@style/button_full"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@android:string/cancel" />
<Button
android:id="@+id/simple_dir_chooser_ok"
style="@style/button_full"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@android:string/ok" />
</LinearLayout>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/buttonLayout"
android:layout_below="@+id/headerLayout"
android:clipToPadding="false"
android:scrollbarStyle="outsideOverlay"
tools:listitem="@layout/simple_dir_item" />
</RelativeLayout>
|