summaryrefslogtreecommitdiffstats
path: root/res/layout-xlarge/camera_control.xml
blob: 04767638fc43c625425e421323454519ea7c2f5c (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
94
95
96
97
98
99
100
101
<?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.
-->

<com.android.camera.ui.ControlPanel 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="300dp"
        android:layout_alignParentRight="true"
        android:layout_marginTop="40dp"
        android:layout_marginBottom="40dp">
        <!-- The width is determined by IndicatorWheel so we should set
             layout_width as wrap_contant instead of hardcoding the width
             but somehow doing so makes the control panel occupy the whole
             screen width. Framework bug? -->

        <ViewStub android:id="@+id/zoom_stub"
                android:inflatedId="@+id/zoom_picker"
                android:layout="@layout/zoom_picker"
                android:layout_alignParentTop="true"
                android:layout_alignParentRight="true"
                android:layout_width="45dp"
                android:layout_height="150dp"
                android:layout_marginRight="160dp"/>

        <TextView android:id="@+id/recording_time"
                style="@style/RecordingTime"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="90dp"
                android:drawablePadding="8dp"
                android:drawableLeft="@drawable/ic_recording_indicator"
                android:visibility="gone" />

        <TextView android:id="@+id/time_lapse_recording_time"
                style="@style/RecordingTime"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/recording_time"
                android:layout_alignParentRight="true"
                android:visibility="gone" />

        <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_large"
                        android:background="@drawable/btn_shutter_large" />
        </com.android.camera.ui.IndicatorWheel>

        <com.android.camera.SwitcherSet android:id="@+id/camera_switch"
                android:orientation="vertical"
                android:gravity="center"
                android:layout_height="150dp"
                android:layout_width="45dp"
                android:layout_alignParentBottom="true"
                android:layout_alignParentRight="true"
                android:layout_marginRight="160dp"
                android:background="@drawable/mode_switch_bg_v2">
            <RadioButton android:id="@+id/switch_off_button"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:button="@android:color/transparent"
                    android:background="@drawable/btn_ic_mode_switch_video"/>
            <com.android.camera.Switcher android:id="@+id/switcher"
                    android:layout_width="wrap_content"
                    android:layout_height="50dp"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:src="@drawable/btn_mode_switch_knob_v2"
                    android:background="@drawable/btn_mode_switch_bg_v2" />
            <RadioButton android:id="@+id/switch_on_button"
                    android:layout_height="wrap_content"
                    android:layout_width="wrap_content"
                    android:button="@android:color/transparent"
                    android:background="@drawable/btn_ic_mode_switch_camera"/>
        </com.android.camera.SwitcherSet>
</com.android.camera.ui.ControlPanel>