summaryrefslogtreecommitdiffstats
path: root/res/layout-port/mode_options_overlay.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout-port/mode_options_overlay.xml')
-rw-r--r--res/layout-port/mode_options_overlay.xml120
1 files changed, 0 insertions, 120 deletions
diff --git a/res/layout-port/mode_options_overlay.xml b/res/layout-port/mode_options_overlay.xml
deleted file mode 100644
index acc9005bf..000000000
--- a/res/layout-port/mode_options_overlay.xml
+++ /dev/null
@@ -1,120 +0,0 @@
-<?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.
--->
-<!-- This layout is shared by phone and tablet in landscape orientation. -->
-
-<com.android.camera.widget.ModeOptionsOverlay
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:camera="http://schemas.android.com/apk/res/com.android.camera2"
- android:id="@+id/mode_options_overlay"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center" >
- <com.android.camera.widget.ModeOptions
- android:id="@+id/mode_options"
- android:layout_width="match_parent"
- android:layout_height="@dimen/mode_options_height"
- android:layout_gravity="bottom"
- android:visibility="invisible"
- android:background="#00000000" >
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <com.android.camera.ui.TopRightWeightedLayout
- android:id="@+id/mode_options_exposure"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:gravity="center"
- android:layout_gravity="right"
- android:background="@null"
- android:visibility="invisible" >
-
- <ImageButton
- android:id="@+id/exposure_n2"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure_n2" />
- <ImageButton
- android:id="@+id/exposure_n1"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure_n1" />
- <ImageButton
- android:id="@+id/exposure_0"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure_0" />
- <ImageButton
- android:id="@+id/exposure_p1"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure_p1" />
- <ImageButton
- android:id="@+id/exposure_p2"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure_p2" />
- </com.android.camera.ui.TopRightWeightedLayout>
-
- <com.android.camera.ui.TopRightWeightedLayout
- android:id="@+id/mode_options_buttons"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:gravity="center"
- android:layout_gravity="right"
- android:visibility="visible"
- android:background="@null"
- android:clipChildren="false"
- android:clipToPadding="false"
- android:alpha="0.0" >
- <ImageButton
- android:id="@+id/exposure_button"
- style="@style/ModeOption"
- android:background="@null"
- android:src="@drawable/ic_exposure" />
- <!-- pano image ids and descriptions are added at runtime -->
- <com.android.camera.MultiToggleImageButton
- android:id="@+id/pano_orientation_toggle_button"
- style="@style/ModeOption" />
- <com.android.camera.MultiToggleImageButton
- android:id="@+id/grid_lines_toggle_button"
- style="@style/ModeOption"
- camera:imageIds="@array/grid_lines_icons"
- camera:contentDescriptionIds="@array/grid_lines_descriptions" />
- <com.android.camera.MultiToggleImageButton
- android:id="@+id/hdr_plus_toggle_button"
- style="@style/ModeOption"
- camera:imageIds="@array/pref_camera_hdr_plus_icons"
- camera:contentDescriptionIds="@array/hdr_plus_descriptions" />
- <com.android.camera.MultiToggleImageButton
- android:id="@+id/flash_toggle_button"
- style="@style/ModeOption"
- camera:imageIds="@array/camera_flashmode_icons"
- camera:contentDescriptionIds="@array/camera_flash_descriptions" />
- <com.android.camera.MultiToggleImageButton
- android:id="@+id/camera_toggle_button"
- style="@style/ModeOption"
- camera:imageIds="@array/camera_id_icons"
- camera:contentDescriptionIds="@array/camera_id_descriptions" />
- </com.android.camera.ui.TopRightWeightedLayout>
- </FrameLayout>
- </com.android.camera.widget.ModeOptions>
-
- <include layout="@layout/indicators" />
-
-</com.android.camera.widget.ModeOptionsOverlay>