1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2013 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:fitsSystemWindows="true"
19    style="@style/RootLayoutPadding"
20    android:layout_width="fill_parent"
21    android:layout_height="fill_parent"
22    android:orientation="vertical">
23
24    <ScrollView
25        android:layout_width="match_parent"
26        android:layout_height="match_parent"
27        android:layout_alignParentTop="true">
28
29        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
30            android:layout_width="fill_parent"
31            android:layout_height="wrap_content"
32            android:orientation="vertical">
33
34            <TextView
35                android:id="@+id/check_cert_desc"
36                android:layout_width="wrap_content"
37                android:layout_height="wrap_content"
38                android:text="@string/caboot_check_cert_installed" />
39
40            <Button
41                android:id="@+id/check_creds"
42                android:layout_width="wrap_content"
43                android:layout_height="wrap_content"
44                android:text="@string/caboot_check_creds" />
45
46            <TextView
47                android:id="@+id/need_to_install_cert"
48                android:layout_width="wrap_content"
49                android:layout_height="wrap_content"
50                android:text="@string/caboot_if_not_installed" />
51            <TextView
52                android:id="@+id/need_to_install_cert_instructions"
53                android:layout_width="wrap_content"
54                android:layout_height="wrap_content"
55                android:text="@string/cacert_install_cert" />
56
57            <Button
58                android:id="@+id/install"
59                android:layout_width="wrap_content"
60                android:layout_height="wrap_content"
61                android:text="@string/caboot_install_cert" />
62
63            <TextView
64                android:id="@+id/remove_screen_lock_description"
65                android:layout_width="wrap_content"
66                android:layout_height="wrap_content"
67                android:text="@string/cacert_remove_screen_lock" />
68
69            <Button
70                android:id="@+id/remove_screen_lock"
71                android:layout_width="wrap_content"
72                android:layout_height="wrap_content"
73                android:text="@string/caboot_remove_screen_lock" />
74
75            <TextView
76                android:id="@+id/reboot"
77                android:layout_width="wrap_content"
78                android:layout_height="wrap_content"
79                android:text="@string/caboot_reboot_desc" />
80
81            <TextView
82                android:id="@+id/after_reboot"
83                android:layout_width="wrap_content"
84                android:layout_height="wrap_content"
85                android:text="@string/caboot_after_boot" />
86
87            <include layout="@layout/pass_fail_buttons" />
88        </LinearLayout>
89    </ScrollView>
90</LinearLayout>
91