1<?xml version="1.0" encoding="utf-8"?>
2<!--
3     Copyright (C) 2014 The Android Open Source Project
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9          http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17<merge xmlns:android="http://schemas.android.com/apk/res/android">
18    <Spinner
19        android:id="@+id/camera_pane_camera_spinner"
20        android:layout_width="match_parent"
21        android:layout_height="wrap_content"
22        android:prompt="@string/camera_pane_spinner_prompt" />
23    <LinearLayout
24        android:layout_width="match_parent"
25        android:layout_height="wrap_content"
26        android:orientation="horizontal" >
27
28        <ToggleButton
29            android:id="@+id/camera_pane_open_button"
30            android:layout_width="0px"
31            android:layout_height="wrap_content"
32            android:layout_weight="1"
33            android:textOff="@string/camera_pane_open_button_off"
34            android:textOn="@string/camera_pane_open_button_on" />
35        <Button
36            android:id="@+id/camera_pane_info_button"
37            android:layout_width="0px"
38            android:layout_height="wrap_content"
39            android:layout_weight="1"
40            android:text="@string/camera_pane_info_button" />
41        <TextView
42            android:id="@+id/camera_pane_status_text"
43            android:layout_width="0px"
44            android:layout_height="wrap_content"
45            android:layout_weight="1" />
46    </LinearLayout>
47    <LinearLayout
48        android:layout_width="match_parent"
49        android:layout_height="wrap_content"
50        android:orientation="horizontal" >
51
52        <Button
53            android:id="@+id/camera_pane_configure_button"
54            android:layout_width="0px"
55            android:layout_height="wrap_content"
56            android:layout_weight="1"
57            android:text="@string/camera_pane_configure_button" />
58        <Button
59            android:id="@+id/camera_pane_stop_button"
60            android:layout_width="0px"
61            android:layout_height="wrap_content"
62            android:layout_weight="1"
63            android:text="@string/camera_pane_stop_button" />
64        <Button
65            android:id="@+id/camera_pane_flush_button"
66            android:layout_width="0px"
67            android:layout_height="wrap_content"
68            android:layout_weight="1"
69            android:text="@string/camera_pane_flush_button" />
70    </LinearLayout>
71</merge>
72