1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2015 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--> 16 17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:id="@+id/scrollView" 21 > 22 23<LinearLayout 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content" 26 android:padding="20dp" 27 android:orientation="vertical"> 28 29 <TextView 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:scrollbars="vertical" 33 android:gravity="bottom" 34 android:id="@+id/audio_general_headset_port_exists" 35 android:text="@string/audio_general_headset_port_exists" /> 36 37 <LinearLayout 38 android:layout_width="match_parent" 39 android:layout_height="wrap_content" 40 android:orientation="horizontal"> 41 42 <Button 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:id="@+id/audio_general_headset_no" 46 android:text="@string/audio_general_headset_no" /> 47 48 <Button 49 android:layout_width="wrap_content" 50 android:layout_height="wrap_content" 51 android:id="@+id/audio_general_headset_yes" 52 android:text="@string/audio_general_headset_yes" /> 53 </LinearLayout> 54 55 <TextView 56 android:layout_width="match_parent" 57 android:layout_height="wrap_content" 58 android:scrollbars="vertical" 59 android:gravity="bottom" 60 android:id="@+id/info_text"/> 61 62 <LinearLayout 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:orientation="vertical"> 66 <Button 67 android:layout_width="match_parent" 68 android:layout_height="wrap_content" 69 android:id="@+id/audio_dev_notification_connect_clearmsgs_btn" 70 android:text="@string/audio_dev_notification_clearmsgs"/> 71 72 <TextView 73 android:layout_width="match_parent" 74 android:layout_height="wrap_content" 75 android:id="@+id/audio_dev_notification_connect_msg"/> 76 77 <TextView 78 android:layout_width="match_parent" 79 android:layout_height="wrap_content" 80 android:id="@+id/audio_dev_notification_disconnect_msg"/> 81 82 </LinearLayout> 83 84 <include layout="@layout/pass_fail_buttons" /> 85 86</LinearLayout> 87</ScrollView> 88