1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2011 The Android Open Source Project 2 Licensed under the Apache License, Version 2.0 (the "License"); 3 you may not use this file except in compliance with the License. 4 You may obtain a copy of the License at 5 http://www.apache.org/licenses/LICENSE-2.0 6 Unless required by applicable law or agreed to in writing, software 7 distributed under the License is distributed on an "AS IS" BASIS, 8 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 9 See the License for the specific language governing permissions and 10 limitations under the License. 11--> 12<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 13 android:layout_width="match_parent" 14 android:layout_height="match_parent" 15 android:orientation="vertical"> 16 <ScrollView 17 android:layout_width="match_parent" 18 android:layout_height="0dp" 19 android:layout_weight="2"> 20 <TextView 21 android:id="@+id/test_instructions" 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:padding="10dip" 25 android:textSize="18dip"/> 26 </ScrollView> 27 <Button 28 android:id="@+id/prepare_test_button" 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content"/> 31 <ListView 32 android:id="@+id/android:list" 33 android:layout_width="match_parent" 34 android:layout_height="0dp" 35 android:layout_weight="3"/> 36 <include layout="@layout/pass_fail_buttons"/> 37</LinearLayout> 38