| <?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. |
| --> |
| <merge xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent"> |
| |
| <FrameLayout |
| android:id="@+id/bottombar_capture" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:visibility="visible" > |
| <com.android.camera.ShutterButton |
| android:id="@+id/shutter_button" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:layout_gravity="center" |
| android:scaleType="center" |
| android:clickable="true" |
| android:contentDescription="@string/accessibility_shutter_button" |
| android:focusable="true" |
| android:src="@drawable/ic_camera" /> |
| </FrameLayout> |
| |
| <FrameLayout |
| android:id="@+id/bottombar_cancel" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:visibility="visible" > |
| <ImageButton |
| android:id="@+id/shutter_cancel_button" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:layout_gravity="center" |
| android:scaleType="center" |
| android:clickable="true" |
| android:contentDescription="@string/accessibility_cancel_button" |
| android:focusable="true" |
| android:background="@drawable/shutter_button_background_refocus" |
| android:src="@drawable/ic_cancel" /> |
| </FrameLayout> |
| |
| <include layout="@layout/retake_done_cancel_layout" /> |
| </merge> |