blob: f8e58e65c547c624339c634b9ac94eab25b172b6 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="?background_color">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="2">
<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
style="@style/edittext_full"
android:id="@+id/simple_dir_chooser_path"
android:singleLine="true"
android:lines="0"
android:editable="false"
android:scrollHorizontally="true"
android:inputType="textNoSuggestions" />
</LinearLayout>
<ListView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="100"
android:id="@+id/android:list" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="10dip"
android:layout_weight="1">
<Button style="@style/button_full"
android:id="@+id/simple_dir_chooser_ok"
android:text="@android:string/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button style="@style/button_full"
android:id="@+id/simple_dir_chooser_cancel"
android:text="@android:string/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
|