blob: 8ad3fbdbaaed25b8349ecb0d9c596dcfb9f1aca3 [file] [log] [blame]
Raymond054a4412015-03-17 20:51:23 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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
Kane Hof9696612016-11-02 19:05:46 -070017<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
Raymond054a4412015-03-17 20:51:23 -070018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Kane Hof9696612016-11-02 19:05:46 -070020 style="@style/RootLayoutPadding">
21
22<LinearLayout
23 android:layout_width="match_parent"
24 android:layout_height="match_parent"
25 android:orientation="vertical">
Raymond054a4412015-03-17 20:51:23 -070026
27 <TextView
28 android:layout_width="match_parent"
Kane Hof9696612016-11-02 19:05:46 -070029 android:layout_height="wrap_content"
Raymond054a4412015-03-17 20:51:23 -070030 android:id="@+id/info_text"/>
31
32 <LinearLayout
33 android:layout_width="match_parent"
34 android:layout_height="0dp"
35 android:layout_weight="3"
36 android:orientation="horizontal">
37 <Button
38 android:layout_width="0dp"
39 android:layout_height="match_parent"
40 android:layout_weight="5"
41 android:text="@string/hifi_ultrasound_test_record"
42 android:id="@+id/recorder_button"/>
43 <Button
44 android:layout_width="0dp"
45 android:layout_height="match_parent"
46 android:layout_weight="5"
47 android:text="@string/hifi_ultrasound_test_play"
48 android:id="@+id/player_button"/>
49 </LinearLayout>
50
Kane Hof9696612016-11-02 19:05:46 -070051 <include layout="@layout/pass_fail_buttons" />
52 </LinearLayout>
53</ScrollView>