1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2014 The Android Open Source Project
2
3     Licensed under the Apache License, Version 2.0 (the "License");
4     you may not use this file except in compliance with the License.
5     You may obtain a copy of the License at
6
7          http://www.apache.org/licenses/LICENSE-2.0
8
9     Unless required by applicable law or agreed to in writing, software
10     distributed under the License is distributed on an "AS IS" BASIS,
11     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12     See the License for the specific language governing permissions and
13     limitations under the License.
14-->
15<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16    android:fitsSystemWindows="true"
17    android:layout_width="match_parent"
18    android:layout_height="match_parent">
19
20    <LinearLayout
21        android:id="@+id/test_controls"
22        android:layout_width="fill_parent"
23        android:layout_height="wrap_content"
24        android:orientation="vertical"
25        android:layout_gravity="top">
26
27        <LinearLayout
28            android:layout_width="match_parent"
29            android:layout_height="match_parent">
30
31            <include layout="@layout/pass_fail_buttons" />
32        </LinearLayout>
33
34        <LinearLayout
35            android:layout_width="match_parent"
36            android:layout_height="wrap_content"
37            android:orientation="horizontal">
38
39            <Button
40                android:id="@+id/up_button"
41                android:layout_width="match_parent"
42                android:layout_height="wrap_content"
43                android:layout_weight="1"
44                android:text="@string/pwa_button_up" />
45
46            <Button
47                android:id="@+id/down_button"
48                android:layout_width="match_parent"
49                android:layout_height="wrap_content"
50                android:layout_weight="1"
51                android:text="@string/pwa_button_down" />
52
53        </LinearLayout>
54    </LinearLayout>
55
56    <TextureView
57        android:id="@+id/texture_view"
58        android:layout_width="match_parent"
59        android:layout_height="match_parent"
60        android:layout_below="@id/test_controls" />
61
62</RelativeLayout>
63