190 lines
7.3 KiB
XML
190 lines
7.3 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.
|
|
-->
|
|
<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:background="@drawable/camera_controls_bg_opaque"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:weightSum="100"
|
|
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:layout_marginStart="8dp"
|
|
android:clickable="true"
|
|
android:contentDescription="@string/accessibility_shutter_button"
|
|
android:focusable="true"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/btn_new_shutter_video" />
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="25">
|
|
|
|
<com.android.camera.ui.ModuleSwitcher
|
|
android:id="@+id/camera_switcher"
|
|
style="@style/SwitcherButton"
|
|
android:layout_gravity="center"
|
|
android:scaleType="center"
|
|
android:contentDescription="@string/accessibility_mode_picker" />
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ViewStub
|
|
android:id="@+id/review_control_stub"
|
|
android:layout="@layout/review_module_control"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</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>
|