blob: c1b62af9c0a5d315e72a74ef5e1047609843af3e [file] [log] [blame]
Ricardo Garcia9b2e1682015-07-29 15:36:05 -07001<?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-->
Ricardo Garcia28f89202015-09-29 15:23:16 -050016<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:padding="10dip"
21 android:orientation="vertical"
22>
23 <ScrollView
Ricardo Garcia4d4ac742015-09-28 00:37:09 -050024 android:layout_width="match_parent"
25 android:layout_height="match_parent"
Ricardo Garcia28f89202015-09-29 15:23:16 -050026 android:id="@+id/scrollView"
27 >
Ricardo Garcia4d4ac742015-09-28 00:37:09 -050028
Ricardo Garcia28f89202015-09-29 15:23:16 -050029 <LinearLayout
30 android:layout_width="match_parent"
Ricardo Garcia9b2e1682015-07-29 15:36:05 -070031 android:layout_height="wrap_content"
Ricardo Garcia28f89202015-09-29 15:23:16 -050032 android:orientation="vertical"
33 >
34 <TextView
35 android:layout_width="match_parent"
36 android:layout_height="wrap_content"
37 android:scrollbars="vertical"
38 android:gravity="bottom"
39 android:id="@+id/audio_general_headset_port_exists"
40 android:text="@string/audio_general_headset_port_exists" />
Ricardo Garcia9b2e1682015-07-29 15:36:05 -070041
Ricardo Garcia28f89202015-09-29 15:23:16 -050042 <LinearLayout
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:orientation="horizontal"
46 >
Ricardo Garcia9b2e1682015-07-29 15:36:05 -070047
Ricardo Garcia28f89202015-09-29 15:23:16 -050048 <Button
49 android:layout_width="wrap_content"
50 android:layout_height="wrap_content"
51 android:id="@+id/audio_general_headset_no"
52 android:text="@string/audio_general_headset_no" />
53
54 <Button
55 android:layout_width="wrap_content"
56 android:layout_height="wrap_content"
57 android:id="@+id/audio_general_headset_yes"
58 android:text="@string/audio_general_headset_yes" />
59
60 </LinearLayout>
61
62 <TextView
63 android:layout_width="match_parent"
64 android:layout_height="wrap_content"
65 android:scrollbars="vertical"
66 android:gravity="bottom"
67 android:id="@+id/info_text"
68 android:text="@string/audio_frequency_line_instructions" />
69 <LinearLayout
70 android:layout_width="match_parent"
71 android:layout_height="wrap_content"
72 android:orientation="vertical"
73 >
74 <Button
75 android:layout_width="match_parent"
76 android:layout_height="wrap_content"
77 android:id="@+id/audio_frequency_line_plug_ready_btn"
78 android:text="@string/audio_frequency_line_plug_ready_btn" />
79
80 <LinearLayout
81 android:orientation="vertical"
82 android:layout_width="match_parent"
83 android:layout_height="match_parent"
84 >
85
86 <LinearLayout
87 android:layout_width="wrap_content"
88 android:layout_height="wrap_content"
89 android:orientation="horizontal"
90 android:id="@+id/audio_frequency_line_layout"
91 >
92 <Button
93 android:layout_width="wrap_content"
94 android:layout_height="wrap_content"
95 android:text="@string/audio_frequency_line_test_btn"
96 android:id="@+id/audio_frequency_line_test_btn" />
97
98 <ProgressBar
99 android:layout_width="wrap_content"
100 android:layout_height="wrap_content"
101 android:id="@+id/audio_frequency_line_progress_bar" />
102 </LinearLayout>
103
104 <TextView
105 android:layout_width="wrap_content"
106 android:layout_height="wrap_content"
107 android:text="@string/audio_frequency_line_results_text"
108 android:id="@+id/audio_frequency_line_results_text" />
109
110 </LinearLayout>
111 </LinearLayout>
112
113 <include layout="@layout/pass_fail_buttons" />
114 </LinearLayout>
115 </ScrollView>
Ricardo Garcia9b2e1682015-07-29 15:36:05 -0700116
117</LinearLayout>