blob: 3c4280ed2561c4c8e9b700f81736ec8ac8860973 [file] [log] [blame]
Michael Kolb3148b182013-01-29 14:03:06 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 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-->
Doris Liu08a98b92013-02-26 10:54:25 -080016<com.android.camera.ui.RotatableLayout
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 style="@style/CameraControls"
19 android:layout_gravity="bottom|center_horizontal"
20 android:layout_marginBottom="2dip">
21 <ImageView android:id="@+id/btn_done"
Michael Kolb3148b182013-01-29 14:03:06 -080022 style="@style/ReviewControlIcon"
23 android:contentDescription="@string/accessibility_review_ok"
24 android:visibility="gone"
Doris Liu08a98b92013-02-26 10:54:25 -080025 android:scaleType="center"
Michael Kolb3148b182013-01-29 14:03:06 -080026 android:layout_gravity="right|bottom"
27 android:background="@drawable/bg_pressed"
28 android:src="@drawable/ic_menu_done_holo_light" />
29
30 <ImageView android:id="@+id/btn_retake"
31 style="@style/ReviewControlIcon"
32 android:contentDescription="@string/accessibility_review_retake"
33 android:layout_gravity="bottom|center_horizontal"
34 android:scaleType="center"
35 android:focusable="true"
36 android:visibility="gone"
37 android:background="@drawable/bg_pressed"
38 android:src="@drawable/ic_btn_shutter_retake" />
39
Doris Liu08a98b92013-02-26 10:54:25 -080040 <ImageView android:id="@+id/btn_cancel"
Michael Kolb3148b182013-01-29 14:03:06 -080041 style="@style/ReviewControlIcon"
42 android:contentDescription="@string/accessibility_review_cancel"
43 android:visibility="gone"
Doris Liu08a98b92013-02-26 10:54:25 -080044 android:scaleType="center"
Michael Kolb3148b182013-01-29 14:03:06 -080045 android:layout_gravity="left|bottom"
46 android:background="@drawable/bg_pressed"
47 android:src="@drawable/ic_menu_cancel_holo_light" />
Doris Liu08a98b92013-02-26 10:54:25 -080048</com.android.camera.ui.RotatableLayout>