camera_control.xml revision 2ca4f7cd4bcc12dc70e394b4372072b61c32a215
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        android:layout_alignParentRight="true">
25
26    <com.android.camera.RotateImageView
27            android:id="@+id/review_thumbnail"
28            android:layout_alignParentTop="true"
29            android:layout_centerHorizontal="true"
30            android:layout_height="52dp"
31            android:layout_width="52dp"
32            android:clickable="true"
33            android:focusable="false"
34            android:background="@drawable/border_last_picture"/>
35
36    <LinearLayout android:id="@+id/camera_switch_set"
37            android:orientation="vertical"
38            android:gravity="center"
39            android:layout_centerInParent="true"
40            android:layout_height="wrap_content"
41            android:layout_width="wrap_content">
42        <com.android.camera.RotateImageView android:id="@+id/video_switch_icon"
43                android:layout_height="wrap_content"
44                android:layout_width="wrap_content"
45                android:src="@drawable/btn_ic_mode_switch_video"/>
46        <com.android.camera.Switcher android:id="@+id/camera_switch"
47                android:layout_width="wrap_content"
48                android:layout_height="70dp"
49                android:src="@drawable/btn_mode_switch_knob"
50                android:background="@drawable/btn_mode_switch_bg" />
51        <com.android.camera.RotateImageView
52                android:id="@+id/camera_switch_icon"
53                android:layout_height="wrap_content"
54                android:layout_width="wrap_content"
55                android:layout_marginBottom="3dp"
56                android:src="@drawable/btn_ic_mode_switch_camera"/>
57    </LinearLayout>
58
59    <com.android.camera.ShutterButton android:id="@+id/shutter_button"
60            android:layout_alignParentBottom="true"
61            android:layout_centerHorizontal="true"
62            android:layout_height="wrap_content"
63            android:layout_width="wrap_content"
64            android:scaleType="center"
65            android:clickable="true"
66            android:focusable="true"
67            android:src="@drawable/btn_ic_camera_shutter"
68            android:background="@drawable/btn_shutter"/>
69</RelativeLayout>
70
71