summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioTesterApp/res/layout/slider.xml
blob: 93dcd6bdf8f5eb7b71240e743ac9fcd812f224db (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
<?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:layout_marginLeft="10dip"
    android:layout_marginRight="10dip"
    android:orientation="vertical"
    android:paddingLeft="20dip"
    android:paddingRight="20dip" >
    
    <EditText android:id="@+id/et_slider_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:freezesText="true"
        android:inputType="textCapWords"
        android:hint="@string/slider_title"/>
    
    <EditText android:id="@+id/et_slider_footer"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:freezesText="true"
        android:inputType="textCapWords"
        android:hint="@string/slider_footer"/>
    
    <TextView android:id="@+id/tv_slider_numOfTicks"
        style="@style/small_header_text"
        android:text="@string/slider_ticks"/>
    
    <SeekBar android:id="@+id/seek_slider_numOfTicks"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:max="24"
        android:progress="0"
        />
    
    <TextView android:id="@+id/tv_slider_startPosition"
        style="@style/small_header_text"
        android:text="@string/slider_start_position"/>
    
    <SeekBar android:id="@+id/seek_slider_startPosition"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:max="25"
        android:progress="0"
        />
    
    <TextView android:id="@+id/tv_slider_timeout"
        style="@style/small_header_text"
        android:text="@string/timeout"/>
    
    <SeekBar android:id="@+id/seek_slider_timeout"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:max="64"
        android:progress="10"
        />

</LinearLayout>