camera_control.xml revision 13161c7fe39bf019a334d8ea7e4eaddc1988adad
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
18        android:id="@+id/control_bar"
19        android:orientation="vertical"
20        android:layout_height="match_parent"
21        android:layout_width="76dp"
22        android:layout_marginTop="13dp"
23        android:layout_marginBottom="10dp">
24
25    <include layout="@layout/review_thumbnail"/>
26
27    <LinearLayout android:id="@+id/camera_switch_set"
28            android:orientation="vertical"
29            android:gravity="center"
30            android:layout_centerInParent="true"
31            android:layout_height="wrap_content"
32            android:layout_width="wrap_content">
33        <com.android.camera.RotateImageView android:id="@+id/video_switch_icon"
34                android:layout_height="wrap_content"
35                android:layout_width="wrap_content"
36                android:src="@drawable/btn_ic_mode_switch_video"/>
37        <com.android.camera.Switcher android:id="@+id/camera_switch"
38                android:layout_width="wrap_content"
39                android:layout_height="70dp"
40                android:src="@drawable/btn_mode_switch_knob"
41                android:background="@drawable/btn_mode_switch_bg" />
42        <com.android.camera.RotateImageView
43                android:id="@+id/camera_switch_icon"
44                android:layout_height="wrap_content"
45                android:layout_width="wrap_content"
46                android:layout_marginBottom="3dp"
47                android:src="@drawable/btn_ic_mode_switch_camera"/>
48    </LinearLayout>
49
50    <com.android.camera.ShutterButton android:id="@+id/shutter_button"
51            android:layout_alignParentBottom="true"
52            android:layout_centerHorizontal="true"
53            android:layout_height="wrap_content"
54            android:layout_width="wrap_content"
55            android:scaleType="center"
56            android:clickable="true"
57            android:focusable="true"
58            android:src="@drawable/btn_ic_camera_shutter"
59            android:background="@drawable/btn_shutter"/>
60</RelativeLayout>
61
62