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