1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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<LinearLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:fitsSystemWindows="true"
20    android:layout_width="match_parent"
21    android:layout_height="wrap_content"
22    android:orientation="vertical"
23    style="@style/RootLayoutPadding">
24
25    <ScrollView
26        android:layout_width="match_parent"
27        android:layout_height="match_parent"
28        android:id="@+id/scrollView">
29
30        <LinearLayout
31            android:layout_width="match_parent"
32            android:layout_height="wrap_content"
33            android:orientation="vertical">
34
35            <LinearLayout
36                    android:layout_width="match_parent"
37                    android:layout_height="wrap_content"
38                    android:orientation="vertical"
39                    android:id="@+id/audio_aec_test_layout" >
40
41                <View
42                        android:layout_width="match_parent"
43                        android:layout_height="1dp"
44                        android:background="?android:colorAccent" />
45
46                <TextView
47                        android:layout_width="wrap_content"
48                        android:layout_height="wrap_content"
49                        android:scrollbars="vertical"
50                        android:gravity="bottom"
51                        android:id="@+id/audio_aec_instructions" />
52
53                <Button
54                        android:layout_width="wrap_content"
55                        android:layout_height="wrap_content"
56                        android:soundEffectsEnabled="false"
57                        android:text="@string/af_button_test"
58                        android:id="@+id/audio_aec_button_test" />
59                <ProgressBar
60                        android:layout_width="wrap_content"
61                        android:layout_height="wrap_content"
62                        android:layout_weight="1"
63                        android:id="@+id/audio_aec_test_progress_bar" />
64
65                <TextView
66                        android:layout_width="match_parent"
67                        android:layout_height="wrap_content"
68                        android:text="@string/af_test_results"
69                        android:id="@+id/audio_aec_test_result" />
70            </LinearLayout>
71
72            <include layout="@layout/pass_fail_buttons" />
73        </LinearLayout>
74    </ScrollView>
75
76</LinearLayout>
77