summaryrefslogtreecommitdiffstats
path: root/tests/LockTaskTests/res/layout/activity_main.xml
blob: c2e93c4d3881913ee1339107c84a60720cf9e340 (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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/root_launch"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.google.android.example.locktasktests.MainActivity" >
    <Button
        android:id="@+id/button_default"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:onClick="onButtonPressed"
        android:text="@string/launch_default" />
    <Button
        android:id="@+id/button_never"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:onClick="onButtonPressed"
        android:text="@string/launch_never" />
    <Button
        android:id="@+id/button_whitelist"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:onClick="onButtonPressed"
        android:text="@string/launch_whitelist" />
    <Button
        android:id="@+id/button_always"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:onClick="onButtonPressed"
        android:text="@string/launch_always" />

</LinearLayout>