Home | History | Annotate | Download | only in layout
      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:orientation="vertical"
     15     android:layout_width="match_parent"
     16     android:layout_height="match_parent"
     17 >
     18     <ScrollView
     19         android:layout_width="match_parent"
     20         android:layout_height="100dp"
     21         android:layout_weight="2">
     22         <TextView
     23             android:id="@+id/requesting_bugreport_device_owner_instructions"
     24             android:layout_width="match_parent"
     25             android:layout_height="wrap_content"
     26             android:padding="10dip"
     27             android:text="@string/device_owner_requesting_bugreport_tests_info"
     28             android:textSize="18dip" />
     29     </ScrollView>
     30     <Button
     31         android:id="@+id/set_device_owner_button"
     32         android:layout_width="204dp"
     33         android:layout_height="wrap_content"
     34         android:text="@string/set_device_owner_button_label" />
     35     <ListView
     36         android:id="@+id/android:list"
     37         android:layout_width="match_parent"
     38         android:layout_height="wrap_content"
     39         android:layout_weight="3" />
     40     <include layout="@layout/pass_fail_buttons" />
     41 </LinearLayout>
     42