aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/simple_dir_chooser.xml
blob: 7c9d95af2206a2e4e2d4f592e68dc741a2bc2f13 (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
<?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:background="?background_color"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        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>

    <ListView
        android:id="@+id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="100" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:paddingTop="10dip" >

        <Button
            android:id="@+id/simple_dir_chooser_ok"
            style="@style/button_full"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@android:string/ok" />

        <Button
            android:id="@+id/simple_dir_chooser_cancel"
            style="@style/button_full"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@android:string/cancel" />
    </LinearLayout>

</LinearLayout>