1<?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--> 16<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" 22 style="@style/ReviewControlIcon" 23 android:contentDescription="@string/accessibility_review_ok" 24 android:visibility="gone" 25 android:scaleType="center" 26 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 40 <ImageView android:id="@+id/btn_cancel" 41 style="@style/ReviewControlIcon" 42 android:contentDescription="@string/accessibility_review_cancel" 43 android:visibility="gone" 44 android:scaleType="center" 45 android:layout_gravity="left|bottom" 46 android:background="@drawable/bg_pressed" 47 android:src="@drawable/ic_menu_cancel_holo_light" /> 48</com.android.camera.ui.RotatableLayout> 49