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