summaryrefslogtreecommitdiffstats
path: root/res/layout/camera_controls.xml
blob: 39bedb059afd79eadaf0696aa3ed77598cf719c3 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 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.CameraControls xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/camera_controls"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/top_bar"
        android:background="@drawable/camera_controls_bg_translucent"
        android:layout_width="match_parent"
        android:layout_height="@dimen/preview_top_margin"
        android:gravity="top"
        android:orientation="horizontal">

        <com.android.camera.ui.RotateImageView
            android:id="@+id/menu"
            style="@style/MenuButton"
            android:contentDescription="@string/accessibility_menu_button"
            android:layout_weight="1"
            android:src="@drawable/ic_settings" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/front_back_switcher"
            android:layout_weight="1"
            style="@style/MenuButton" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/hdr_switcher"
            android:layout_weight="1"
            style="@style/MenuButton" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/ts_makeup_switcher"
            android:layout_weight="1"
            style="@style/MenuButton" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/filter_mode_switcher"
            android:layout_weight="1"
            style="@style/MenuButton" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/mute_button"
            android:layout_weight="1"
            style="@style/MenuButton"
            android:contentDescription="@string/mute_button_desc"
            android:src="@drawable/ic_unmuted_button" />

        <com.android.camera.ui.RotateImageView
            android:id="@+id/scene_mode_switcher"
            android:layout_weight="1"
            style="@style/MenuButton" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/preview_bottom_margin"
        android:gravity="center"
        android:weightSum="100"
        android:background="@drawable/camera_controls_bg_translucent"
        android:orientation="horizontal">

		<com.android.camera.ui.RotateImageView
			android:id="@+id/preview_thumb"
            android:layout_width="0dp"
            android:layout_height="@dimen/thumbnail_size"
			android:layout_weight="25"
            android:layout_gravity="center_horizontal|center_vertical"
			android:background="@android:color/transparent"
			android:contentDescription="@string/switch_photo_filmstrip"
			android:scaleType="fitCenter" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:gravity="center"
            android:layout_weight="50"
            android:orientation="horizontal">

            <com.android.camera.ShutterButton
                android:id="@+id/shutter_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal|center_vertical"
                android:clickable="true"
                android:contentDescription="@string/accessibility_shutter_button"
                android:focusable="true"
                android:scaleType="fitCenter"
                android:src="@drawable/btn_new_shutter" />

            <ImageView
                android:id="@+id/video_button"
                android:visibility="gone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal|center_vertical"
                android:clickable="true"
                android:contentDescription="@string/accessibility_shutter_button"
                android:focusable="true"
                android:scaleType="fitCenter"
                android:src="@drawable/btn_new_shutter_video" />

        </LinearLayout>

        <com.android.camera.ui.ModuleSwitcher
            android:id="@+id/camera_switcher"
            style="@style/SwitcherButton"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:scaleType="center"
            android:layout_weight="25"
            android:layout_gravity="center_horizontal|center_vertical"
            android:contentDescription="@string/accessibility_mode_picker" />
	</LinearLayout>

    <LinearLayout
        android:id="@+id/remaining_photos"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent"
        android:orientation="horizontal"
        android:visibility="gone" >

        <TextView
            android:id="@+id/remaining_photos_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:textColor="@android:color/white"
            android:visibility="gone" />

        <ImageView
            android:id="@+id/remaining_photos_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/remaining_sheets"
            android:visibility="gone" />
    </LinearLayout>

    <com.android.camera.ui.HistogramView
        android:id="@+id/histogram"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="@color/transparent"
        android:visibility="gone" />

    <TextView
        android:id="@+id/auto_hdr_notice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/auto_hdr_enabled"
        android:visibility="gone" />

</com.android.camera.ui.CameraControls>