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