• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:layout_width="match_parent"
20    android:layout_height="wrap_content"
21    android:orientation="vertical"
22    style="@style/RootLayoutPadding">
23
24    <ScrollView
25        android:layout_width="match_parent"
26        android:layout_height="match_parent"
27        android:id="@+id/scrollView">
28
29        <LinearLayout
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content"
32            android:orientation="vertical">
33
34            <LinearLayout
35                    android:layout_width="match_parent"
36                    android:layout_height="wrap_content"
37                    android:orientation="vertical"
38                    android:id="@+id/audio_aec_test_layout" >
39
40                <View
41                        android:layout_width="match_parent"
42                        android:layout_height="1dp"
43                        android:background="?android:colorAccent" />
44
45                <TextView
46                        android:layout_width="wrap_content"
47                        android:layout_height="wrap_content"
48                        android:scrollbars="vertical"
49                        android:gravity="bottom"
50                        android:id="@+id/audio_aec_instructions" />
51
52                <Button
53                        android:layout_width="wrap_content"
54                        android:layout_height="wrap_content"
55                        android:soundEffectsEnabled="false"
56                        android:text="@string/af_button_test"
57                        android:id="@+id/audio_aec_button_test" />
58                <ProgressBar
59                        android:layout_width="wrap_content"
60                        android:layout_height="wrap_content"
61                        android:layout_weight="1"
62                        android:id="@+id/audio_aec_test_progress_bar" />
63
64                <TextView
65                        android:layout_width="match_parent"
66                        android:layout_height="wrap_content"
67                        android:text="@string/af_test_results"
68                        android:id="@+id/audio_aec_test_result" />
69            </LinearLayout>
70
71            <include layout="@layout/pass_fail_buttons" />
72        </LinearLayout>
73    </ScrollView>
74
75</LinearLayout>
76