blob: 5c2b3b51f8f24259f0da1523467caf4b0dd35030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:camera="http://schemas.android.com/apk/res/com.android.camera"
android:id="@+id/control_panel"
android:layout_height="match_parent"
android:layout_width="@dimen/camera_control_width"
android:layout_alignParentRight="true">
<!-- The width is determined by IndicatorWheel so we should set
layout_width as wrap_contant but RelativeLayout Javadoc says that
this is circular dependency and is not allowed so it's very
unfortunate that we have to hardcode the width here. -->
<include layout="@layout/review_thumbnail" />
<com.android.camera.ui.IndicatorWheel android:id="@+id/indicator_wheel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentRight="true">
<com.android.camera.ShutterButton android:id="@+id/shutter_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:scaleType="center"
android:clickable="true"
android:focusable="true"
android:src="@drawable/btn_ic_camera_shutter"
android:background="@drawable/btn_shutter" />
<com.android.camera.ui.RotateImageView android:id="@+id/zoom_increment"
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/btn_zoom_in"
android:visibility="gone" />
<com.android.camera.ui.RotateImageView android:id="@+id/zoom_decrement"
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/btn_zoom_out"
android:visibility="gone" />
<com.android.camera.ui.CameraPicker android:id="@+id/camera_picker"
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</com.android.camera.ui.IndicatorWheel>
<com.android.camera.SwitcherSet android:id="@+id/camera_switch"
android:visibility="invisible"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:padding="14dp"
android:layout_marginRight="@dimen/mode_switcher_margin_right"
android:layout_marginBottom="@dimen/mode_switcher_margin_bottom">
<com.android.camera.ui.RotateImageView
android:id="@+id/video_switch_icon"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/btn_ic_mode_switch_video"/>
<com.android.camera.HorizontalSwitcher android:id="@+id/switcher"
android:layout_width="50dp"
android:layout_height="18dp"
android:layout_marginLeft="@dimen/mode_switcher_inner_margin"
android:layout_marginRight="@dimen/mode_switcher_inner_margin"
android:src="@drawable/toggle_switch_control_holo_dark"
android:background="@drawable/toggle_switch_bg_holo_dark" />
<com.android.camera.ui.RotateImageView
android:id="@+id/camera_switch_icon"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/btn_ic_mode_switch_camera"/>
</com.android.camera.SwitcherSet>
</RelativeLayout>
|