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<LinearLayout 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:orientation="vertical" 21 style="@style/RootLayoutPadding"> 22 <ScrollView 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:id="@+id/scrollView" 26 > 27 28 <LinearLayout 29 android:layout_width="match_parent" 30 android:layout_height="wrap_content" 31 android:orientation="vertical" 32 > 33 <include layout="@layout/audio_wired_query_layout" /> 34 35 <TextView 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:scrollbars="vertical" 39 android:gravity="bottom" 40 android:id="@+id/info_text" 41 android:text="@string/audio_frequency_line_instructions" /> 42 <LinearLayout 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content" 45 android:orientation="vertical" 46 > 47 <Button 48 android:layout_width="match_parent" 49 android:layout_height="wrap_content" 50 android:id="@+id/audio_frequency_line_plug_ready_btn" 51 android:text="@string/audio_frequency_line_plug_ready_btn" 52 android:nextFocusForward="@+id/audio_frequency_line_test_btn" 53 android:nextFocusUp="@+id/audio_general_headset_yes" 54 android:nextFocusDown="@+id/audio_frequency_line_test_btn" 55 android:nextFocusLeft="@+id/audio_general_headset_yes" 56 android:nextFocusRight="@+id/audio_frequency_line_test_btn"/> 57 58 <LinearLayout 59 android:orientation="vertical" 60 android:layout_width="match_parent" 61 android:layout_height="match_parent" 62 > 63 64 <LinearLayout 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 android:orientation="horizontal" 68 android:id="@+id/audio_frequency_line_layout" 69 > 70 <Button 71 android:layout_width="wrap_content" 72 android:layout_height="wrap_content" 73 android:text="@string/audio_frequency_line_test_btn" 74 android:id="@+id/audio_frequency_line_test_btn" 75 android:nextFocusForward="@+id/pass_button" 76 android:nextFocusUp="@+id/audio_frequency_line_plug_ready_btn" 77 android:nextFocusDown="@+id/pass_button" 78 android:nextFocusLeft="@+id/audio_frequency_line_plug_ready_btn" 79 android:nextFocusRight="@+id/pass_button"/> 80 81 <ProgressBar 82 android:layout_width="wrap_content" 83 android:layout_height="wrap_content" 84 android:id="@+id/audio_frequency_line_progress_bar" /> 85 </LinearLayout> 86 87 <TextView 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:text="@string/audio_frequency_line_results_text" 91 android:id="@+id/audio_frequency_line_results_text" /> 92 93 </LinearLayout> 94 </LinearLayout> 95 96 <include layout="@layout/pass_fail_buttons" /> 97 </LinearLayout> 98 </ScrollView> 99 100</LinearLayout> 101