blob: 626ac4f55470fbe2cea34ef9e0584ef3d97243a0 [file] [log] [blame]
Ricardo Garciae908b092015-07-13 19:10:50 -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-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
19 android:padding="10dip"
20 android:orientation="vertical">
21
22 <TextView
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:scrollbars="vertical"
26 android:gravity="bottom"
27 android:id="@+id/info_text"
28 android:text="@string/audio_loopback_instructions" />
29 <LinearLayout
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:orientation="vertical">
33 <Button
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"
36 android:id="@+id/audio_loopback_plug_ready_btn"
37 android:text="@string/audio_loopback_plug_ready_btn"/>
38
39 <LinearLayout
40 android:orientation="vertical"
41 android:layout_width="match_parent"
42 android:layout_height="match_parent"
43 android:id="@+id/audio_loopback_layout">
44
45 <TextView
46 android:layout_width="wrap_content"
47 android:layout_height="wrap_content"
48 android:text="@string/audio_loopback_instructions2"
49 android:id="@+id/audio_loopback_instructions2"/>
50
51 <SeekBar
52 android:layout_width="match_parent"
53 android:layout_height="wrap_content"
54 android:id="@+id/audio_loopback_level_seekbar"/>
55
56 <TextView
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:text="@string/audio_loopback_level_text"
60 android:id="@+id/audio_loopback_level_text"/>
61
62 <Button
63 android:layout_width="wrap_content"
64 android:layout_height="wrap_content"
65 android:text="@string/audio_loopback_test_btn"
66 android:id="@+id/audio_loopback_test_btn"/>
67
68 <ProgressBar
69 android:layout_width="wrap_content"
70 android:layout_height="wrap_content"
71 android:id="@+id/audio_loopback_progress_bar"/>
72
73 <TextView
74 android:layout_width="wrap_content"
75 android:layout_height="wrap_content"
76 android:text="@string/audio_loopback_results_text"
77 android:id="@+id/audio_loopback_results_text"/>
78 </LinearLayout>
79 </LinearLayout>
80
81 <include layout="@layout/pass_fail_buttons" />
82
83</LinearLayout>