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    android:fitsSystemWindows="true"
19    style="@style/RootLayoutPadding"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent">
22
23    <LinearLayout
24        android:layout_width="match_parent"
25        android:layout_height="match_parent"
26        android:orientation="vertical">
27
28        <!-- Install device admin -->
29        <RelativeLayout
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content" >
32
33            <ImageView
34                android:id="@+id/install_admin_status"
35                android:layout_width="wrap_content"
36                android:layout_height="wrap_content"
37                android:layout_alignParentLeft="true"
38                android:layout_alignParentTop="true"
39                android:layout_marginTop="10dip"
40                android:padding="10dip" />
41
42            <TextView
43                android:id="@+id/install_admin_instructions"
44                style="@style/InstructionsSmallFont"
45                android:layout_width="match_parent"
46                android:layout_height="wrap_content"
47                android:layout_alignParentRight="true"
48                android:layout_alignParentTop="true"
49                android:layout_toRightOf="@id/install_admin_status"
50                android:layout_marginTop="10dip"
51                android:text="@string/da_install_admin_instructions" />
52        </RelativeLayout>
53
54        <!-- Enable device admin -->
55        <RelativeLayout
56            android:layout_width="match_parent"
57            android:layout_height="wrap_content" >
58
59            <ImageView
60                android:id="@+id/enable_admin_status"
61                android:layout_width="wrap_content"
62                android:layout_height="wrap_content"
63                android:layout_alignParentLeft="true"
64                android:layout_alignParentTop="true"
65                android:layout_marginTop="10dip"
66                android:padding="10dip" />
67
68            <TextView
69                android:id="@+id/enable_admin_instructions"
70                style="@style/InstructionsSmallFont"
71                android:layout_width="match_parent"
72                android:layout_height="wrap_content"
73                android:layout_alignParentRight="true"
74                android:layout_alignParentTop="true"
75                android:layout_toRightOf="@id/enable_admin_status"
76                android:text="@string/da_enable_admin_instructions" />
77
78            <Button
79                android:id="@+id/enable_device_admin_button"
80                android:layout_width="match_parent"
81                android:layout_height="wrap_content"
82                android:layout_alignParentRight="true"
83                android:layout_below="@id/enable_admin_instructions"
84                android:layout_marginLeft="20dip"
85                android:layout_marginRight="20dip"
86                android:layout_toRightOf="@id/enable_admin_status"
87                android:text="@string/da_enable_admin_button_text" />
88        </RelativeLayout>
89
90        <!-- Uninstall device admin -->
91        <RelativeLayout
92            android:layout_width="match_parent"
93            android:layout_height="wrap_content" >
94
95            <ImageView
96                android:id="@+id/uninstall_admin_status"
97                android:layout_width="wrap_content"
98                android:layout_height="wrap_content"
99                android:layout_alignParentLeft="true"
100                android:layout_alignParentTop="true"
101                android:layout_marginTop="10dip"
102                android:padding="10dip" />
103
104            <TextView
105                android:id="@+id/uninstall_admin_instructions"
106                style="@style/InstructionsSmallFont"
107                android:layout_width="match_parent"
108                android:layout_height="wrap_content"
109                android:layout_alignParentRight="true"
110                android:layout_alignParentTop="true"
111                android:layout_toRightOf="@id/uninstall_admin_status"
112                android:text="@string/da_uninstall_admin_instructions" />
113
114            <Button
115                android:id="@+id/open_app_details_button"
116                android:layout_width="match_parent"
117                android:layout_height="wrap_content"
118                android:layout_alignParentRight="true"
119                android:layout_below="@id/uninstall_admin_instructions"
120                android:layout_marginLeft="20dip"
121                android:layout_marginRight="20dip"
122                android:layout_toRightOf="@id/uninstall_admin_status"
123                android:text="@string/da_uninstall_admin_button_text" />
124        </RelativeLayout>
125
126        <include layout="@layout/pass_fail_buttons" />
127    </LinearLayout>
128
129</ScrollView>
130