summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioTesterApp/res/layout/put_file.xml
blob: 8e0b7bb4300d5fb05bff2ec9623b1ab9236cdea0 (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
<?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="wrap_content"
    android:orientation="vertical" 
    android:paddingLeft="20dip" 
    android:paddingRight="20dip" 
    android:layout_marginLeft="10dip" 
    android:layout_marginRight="10dip">

    <CheckBox
        android:id="@+id/cb_putFile_addAll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Add all images" />

    <ImageButton android:id="@+id/ib_putFile_selectAnImage"
        android:layout_width="match_parent"
        android:layout_height="240dp"
        android:src="@drawable/select_an_image"
        android:background="#00FFFFFF" />

    <EditText android:id="@+id/et_putFile_imageName"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:freezesText="true"
            android:inputType="textCapSentences"
            android:enabled="false"
        android:hint="@string/sdl_image_name">

        <requestFocus />
    </EditText>

    <CheckBox
        android:id="@+id/cb_putFile_isPersistent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/put_file_persistent_file" />

</LinearLayout>