summaryrefslogtreecommitdiffstats
path: root/res/layout-sw485dp/camera_control.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout-sw485dp/camera_control.xml')
-rw-r--r--res/layout-sw485dp/camera_control.xml92
1 files changed, 92 insertions, 0 deletions
diff --git a/res/layout-sw485dp/camera_control.xml b/res/layout-sw485dp/camera_control.xml
new file mode 100644
index 0000000..78aca3d
--- /dev/null
+++ b/res/layout-sw485dp/camera_control.xml
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 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.
+-->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:camera="http://schemas.android.com/apk/res/com.android.camera"
+ android:id="@+id/control_panel"
+ android:layout_height="match_parent"
+ android:layout_width="302dp"
+ android:layout_alignParentRight="true">
+ <!-- The width is determined by IndicatorWheel so we should set
+ layout_width as wrap_contant but RelativeLayout Javadoc says that
+ this is circular dependency and is not allowed so it's very
+ unfortunate that we have to hardcode the width here. -->
+
+ <include android:id="@+id/zoom_picker"
+ layout="@layout/zoom_picker"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentRight="true"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="48dp"
+ android:layout_marginRight="32dp"/>
+
+ <com.android.camera.ui.IndicatorWheel android:id="@+id/indicator_wheel"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_alignParentRight="true">
+ <com.android.camera.ShutterButton android:id="@+id/shutter_button"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:scaleType="center"
+ android:clickable="true"
+ android:focusable="true"
+ android:src="@drawable/btn_ic_camera_shutter"
+ android:background="@drawable/btn_shutter" />
+ </com.android.camera.ui.IndicatorWheel>
+
+ <com.android.camera.SwitcherSet android:id="@+id/camera_switch"
+ android:visibility="invisible"
+ android:orientation="horizontal"
+ android:gravity="center_vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentRight="true"
+ android:padding="14dp"
+ android:layout_marginRight="34dp"
+ android:layout_marginBottom="50dp">
+ <RadioButton android:id="@+id/switch_off_button"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:button="@android:color/transparent"
+ android:clickable="false"
+ android:background="@drawable/btn_ic_mode_switch_video"/>
+ <com.android.camera.HorizontalSwitcher android:id="@+id/switcher"
+ android:layout_width="50dp"
+ android:layout_height="18dp"
+ android:layout_marginLeft="15dp"
+ android:layout_marginRight="15dp"
+ android:src="@drawable/toggle_switch_control_holo_dark"
+ android:background="@drawable/toggle_switch_bg_holo_dark" />
+ <RadioButton android:id="@+id/switch_on_button"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:button="@android:color/transparent"
+ android:clickable="false"
+ android:background="@drawable/btn_ic_mode_switch_camera"/>
+ </com.android.camera.SwitcherSet>
+ <com.android.camera.ui.CameraPicker android:id="@+id/camera_picker"
+ android:clickable="true"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentBottom="true"
+ android:layout_marginRight="232dp"
+ android:layout_marginBottom="56dp" />
+</RelativeLayout>
+