blob: 262c6ad6a072e6d1feb3b8a17452285d0a79fbea [file] [log] [blame]
Maggie Benthall3278c022013-10-04 18:50:51 -04001<?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-->
Kane Hoef5ef292016-08-11 11:18:31 -070017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 style="@style/RootLayoutPadding"
19 android:layout_width="fill_parent"
20 android:layout_height="fill_parent"
21 android:orientation="vertical">
Maggie Benthall3278c022013-10-04 18:50:51 -040022
Kane Hoef5ef292016-08-11 11:18:31 -070023 <ScrollView
Michael Kwanfebcfac2014-11-21 14:27:19 -080024 android:layout_width="match_parent"
25 android:layout_height="match_parent"
Kane Hoef5ef292016-08-11 11:18:31 -070026 android:layout_alignParentTop="true">
Maggie Benthall3278c022013-10-04 18:50:51 -040027
Michael Kwanfebcfac2014-11-21 14:27:19 -080028 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Kane Hoef5ef292016-08-11 11:18:31 -070029 android:layout_width="fill_parent"
30 android:layout_height="wrap_content"
31 android:orientation="vertical">
Maggie Benthall3278c022013-10-04 18:50:51 -040032
Kane Hoef5ef292016-08-11 11:18:31 -070033 <TextView
34 android:id="@+id/check_cert_desc"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:text="@string/caboot_check_cert_installed" />
Maggie Benthall3278c022013-10-04 18:50:51 -040038
Kane Hoef5ef292016-08-11 11:18:31 -070039 <Button
40 android:id="@+id/check_creds"
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:text="@string/caboot_check_creds" />
Maggie Benthall3278c022013-10-04 18:50:51 -040044
Kane Hoef5ef292016-08-11 11:18:31 -070045 <TextView
46 android:id="@+id/need_to_install_cert"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:text="@string/caboot_if_not_installed" />
Maggie Benthall3278c022013-10-04 18:50:51 -040050
Kane Hoef5ef292016-08-11 11:18:31 -070051 <Button
52 android:id="@+id/install"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:text="@string/caboot_install_cert" />
Maggie Benthall3278c022013-10-04 18:50:51 -040056
Kane Hoef5ef292016-08-11 11:18:31 -070057 <TextView
58 android:id="@+id/reboot"
59 android:layout_width="wrap_content"
60 android:layout_height="wrap_content"
61 android:text="@string/caboot_reboot_desc" />
Maggie Benthall3278c022013-10-04 18:50:51 -040062
Kane Hoef5ef292016-08-11 11:18:31 -070063 <TextView
64 android:id="@+id/after_reboot"
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
67 android:text="@string/caboot_after_boot" />
Michael Kwanfebcfac2014-11-21 14:27:19 -080068
Kane Hoef5ef292016-08-11 11:18:31 -070069 <include layout="@layout/pass_fail_buttons" />
Michael Kwanfebcfac2014-11-21 14:27:19 -080070 </LinearLayout>
Kane Hoef5ef292016-08-11 11:18:31 -070071 </ScrollView>
72</LinearLayout>