summaryrefslogtreecommitdiffstats
path: root/tests/FixVibrateSetting/res/layout/fix_vibrate.xml
blob: c505e653e5508c16b20dc55ab41dc434caccd6a1 (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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >

    <TextView android:id="@+id/current_setting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_marginTop="30dp"
        android:layout_marginBottom="50dp"
        android:paddingLeft="8dp"
        android:paddingTop="4dp"
        android:textSize="20sp"
        android:textColor="#ffffffff"
        />

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal"
        >
        <Button android:id="@+id/fix"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/fix"
            />

        <Button android:id="@+id/unfix"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/unfix"
            />
    </LinearLayout>

    <Button android:id="@+id/test"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/test"
        />

</LinearLayout>