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 style="@style/RootLayoutPadding"> 22 23 <LinearLayout 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content" 26 android:orientation="vertical"> 27 28 <include layout="@layout/audio_wired_query_layout" /> 29 30 <TextView 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:scrollbars="vertical" 34 android:gravity="bottom" 35 android:id="@+id/info_text" 36 android:text="@string/audio_output_routingnotification_instructions" /> 37 38 <LinearLayout 39 android:layout_width="match_parent" 40 android:layout_height="wrap_content" 41 android:orientation="vertical" 42 android:id="@+id/audioTrackRoutingLayout"> 43 <TextView 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:text="@string/audio_routingnotification_playHeader"/> 47 48 <TextView 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content" 51 android:id="@+id/audio_routingnotification_audioTrack_change"/> 52 53 <LinearLayout 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:orientation="horizontal"> 57 <Button 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:id="@+id/audio_routingnotification_playBtn" 61 android:text="@string/audio_routingnotification_playBtn"/> 62 63 <Button 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:id="@+id/audio_routingnotification_playStopBtn" 67 android:text="@string/audio_routingnotification_playStopBtn"/> 68 </LinearLayout> 69 </LinearLayout> 70 71 <include layout="@layout/pass_fail_buttons" /> 72 73</LinearLayout> 74</ScrollView> 75