1<?xml version="1.0" encoding="utf-8"?><!--
2     Copyright (C) 2015 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17    android:fitsSystemWindows="true"
18    style="@style/RootLayoutPadding"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:orientation="vertical">
22
23    <ScrollView
24        android:layout_width="match_parent"
25        android:layout_height="0dp"
26        android:layout_weight="1"
27        android:fillViewport="true">
28
29        <LinearLayout
30            android:layout_width="match_parent"
31            android:layout_height="match_parent"
32            android:orientation="vertical">
33
34            <LinearLayout
35                android:id="@+id/test_messages"
36                android:layout_width="match_parent"
37                android:layout_height="wrap_content"
38                android:orientation="vertical">
39
40                <TextView
41                    android:id="@+id/test_instruction"
42                    style="@style/InstructionsFont"
43                    android:layout_width="match_parent"
44                    android:layout_height="wrap_content"
45                    android:layout_weight="0" />
46
47                <TextView
48                    android:id="@+id/test_log"
49                    android:layout_width="match_parent"
50                    android:layout_height="0dp"
51                    android:layout_weight="1"
52                    android:orientation="vertical" />
53
54            </LinearLayout>
55
56            <LinearLayout
57                android:id="@+id/action_buttons"
58                android:layout_width="match_parent"
59                android:layout_height="wrap_content"
60                android:layout_weight="0"
61                android:orientation="horizontal">
62
63                <Button
64                    android:id="@+id/action_reset"
65                    android:layout_width="0dp"
66                    android:layout_height="wrap_content"
67                    android:layout_weight="1"
68                    android:text="@string/keychain_reset" />
69
70                <Button
71                    android:id="@+id/action_skip"
72                    android:layout_width="0dp"
73                    android:layout_height="wrap_content"
74                    android:layout_weight="1"
75                    android:text="@string/keychain_skip" />
76
77                <Button
78                    android:id="@+id/action_next"
79                    android:layout_width="0dp"
80                    android:layout_height="wrap_content"
81                    android:layout_weight="1"
82                    android:text="@string/next_button_text" />
83
84            </LinearLayout>
85        </LinearLayout>
86    </ScrollView>
87
88    <include
89        layout="@layout/pass_fail_buttons"
90        android:layout_width="match_parent"
91        android:layout_height="wrap_content"
92        android:layout_weight="0" />
93
94</LinearLayout>
95