1<?xml version="1.0" encoding="utf-8"?>
2<!--
3     Copyright (C) 2017 The Android Open Source Project
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9          http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
18    style="@style/RootLayoutPadding"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent">
21
22    <LinearLayout
23        android:layout_width="match_parent"
24        android:layout_height="match_parent"
25        android:orientation="vertical">
26
27        <!-- Install device admin -->
28        <RelativeLayout
29            android:layout_width="match_parent"
30            android:layout_height="wrap_content" >
31
32            <ImageView
33                android:id="@+id/install_admin_status"
34                android:layout_width="wrap_content"
35                android:layout_height="wrap_content"
36                android:layout_alignParentLeft="true"
37                android:layout_alignParentTop="true"
38                android:layout_marginTop="10dip"
39                android:padding="10dip" />
40
41            <TextView
42                android:id="@+id/install_admin_instructions"
43                style="@style/InstructionsSmallFont"
44                android:layout_width="match_parent"
45                android:layout_height="wrap_content"
46                android:layout_alignParentRight="true"
47                android:layout_alignParentTop="true"
48                android:layout_toRightOf="@id/install_admin_status"
49                android:layout_marginTop="10dip"
50                android:text="@string/da_install_admin_instructions" />
51        </RelativeLayout>
52
53        <!-- Enable device admin -->
54        <RelativeLayout
55            android:layout_width="match_parent"
56            android:layout_height="wrap_content" >
57
58            <ImageView
59                android:id="@+id/enable_admin_status"
60                android:layout_width="wrap_content"
61                android:layout_height="wrap_content"
62                android:layout_alignParentLeft="true"
63                android:layout_alignParentTop="true"
64                android:layout_marginTop="10dip"
65                android:padding="10dip" />
66
67            <TextView
68                android:id="@+id/enable_admin_instructions"
69                style="@style/InstructionsSmallFont"
70                android:layout_width="match_parent"
71                android:layout_height="wrap_content"
72                android:layout_alignParentRight="true"
73                android:layout_alignParentTop="true"
74                android:layout_toRightOf="@id/enable_admin_status"
75                android:text="@string/da_enable_admin_instructions" />
76
77            <Button
78                android:id="@+id/enable_device_admin_button"
79                android:layout_width="match_parent"
80                android:layout_height="wrap_content"
81                android:layout_alignParentRight="true"
82                android:layout_below="@id/enable_admin_instructions"
83                android:layout_marginLeft="20dip"
84                android:layout_marginRight="20dip"
85                android:layout_toRightOf="@id/enable_admin_status"
86                android:text="@string/da_enable_admin_button_text" />
87        </RelativeLayout>
88
89        <!-- Uninstall device admin -->
90        <RelativeLayout
91            android:layout_width="match_parent"
92            android:layout_height="wrap_content" >
93
94            <ImageView
95                android:id="@+id/uninstall_admin_status"
96                android:layout_width="wrap_content"
97                android:layout_height="wrap_content"
98                android:layout_alignParentLeft="true"
99                android:layout_alignParentTop="true"
100                android:layout_marginTop="10dip"
101                android:padding="10dip" />
102
103            <TextView
104                android:id="@+id/uninstall_admin_instructions"
105                style="@style/InstructionsSmallFont"
106                android:layout_width="match_parent"
107                android:layout_height="wrap_content"
108                android:layout_alignParentRight="true"
109                android:layout_alignParentTop="true"
110                android:layout_toRightOf="@id/uninstall_admin_status"
111                android:text="@string/da_uninstall_admin_instructions" />
112
113            <Button
114                android:id="@+id/open_app_details_button"
115                android:layout_width="match_parent"
116                android:layout_height="wrap_content"
117                android:layout_alignParentRight="true"
118                android:layout_below="@id/uninstall_admin_instructions"
119                android:layout_marginLeft="20dip"
120                android:layout_marginRight="20dip"
121                android:layout_toRightOf="@id/uninstall_admin_status"
122                android:text="@string/da_uninstall_admin_button_text" />
123        </RelativeLayout>
124
125        <include layout="@layout/pass_fail_buttons" />
126    </LinearLayout>
127
128</ScrollView>
129