96 lines
3.8 KiB
XML
96 lines
3.8 KiB
XML
<?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" />
|
|
|
|
<ImageView
|
|
android:id="@+id/shutter_button_icon"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:scaleType="center"
|
|
android:focusable="true"
|
|
android:background="@null"
|
|
android:src="@drawable/ic_camera" />
|
|
|
|
<LinearLayout android:id="@+id/bottombar_button_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<ImageButton android:id="@+id/scene_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:scaleType="center"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:src="@drawable/ic_scene"
|
|
android:background="@null" />
|
|
|
|
<View android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<ImageButton android:id="@+id/color_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:scaleType="center"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:src="@drawable/ic_color"
|
|
android:background="@null" />
|
|
</LinearLayout>
|
|
</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>
|