blob: ea1d2dbb43b696c14c99935b89830683803d6044 [file] [log] [blame]
Kane Ho9a551d72017-02-13 14:19:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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-->
Aurimas Liutikas7b507c72018-03-29 05:17:04 -070016<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
Kane Ho9a551d72017-02-13 14:19:21 -080017 style="@style/RootLayoutPadding"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent">
20
21 <LinearLayout
22 android:layout_width="match_parent"
23 android:layout_height="match_parent"
24 android:orientation="vertical">
25 <TextView
26 android:id="@+id/test_instructions"
27 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
29 android:padding="10dip"
30 android:textSize="18dip"/>
31
32 <Button
33 android:id="@+id/prepare_test_button"
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"/>
36
37 <ListView
38 android:id="@+id/android:list"
39 android:layout_width="match_parent"
40 android:layout_height="200dip"/>
41
42 <include layout="@layout/pass_fail_buttons"/>
43 </LinearLayout>
Aurimas Liutikas7b507c72018-03-29 05:17:04 -070044</androidx.core.widget.NestedScrollView>