summaryrefslogtreecommitdiffstats
path: root/res/layout-xlarge/camera_control.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout-xlarge/camera_control.xml')
-rw-r--r--res/layout-xlarge/camera_control.xml110
1 files changed, 110 insertions, 0 deletions
diff --git a/res/layout-xlarge/camera_control.xml b/res/layout-xlarge/camera_control.xml
new file mode 100644
index 0000000..82ddc55
--- /dev/null
+++ b/res/layout-xlarge/camera_control.xml
@@ -0,0 +1,110 @@
+<?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.
+-->
+
+<com.android.camera.ui.ControlPanel 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="240dp"
+ android:layout_marginTop="20dp"
+ android:layout_marginBottom="20dp"
+ android:layout_marginLeft="10dp"
+ android:layout_marginRight="10dp">
+
+ <ListView android:id="@+id/thumbnail_list"
+ android:layout_width="96dp"
+ android:layout_height="match_parent"
+ android:dividerHeight="6dp"
+ android:orientation="vertical"
+ android:gravity="center">
+ </ListView>
+
+ <RelativeLayout
+ android:layout_width="134dp"
+ android:layout_height="match_parent"
+ android:layout_marginLeft="10dp"
+ android:layout_alignParentRight="true">
+
+ <ViewStub android:id="@+id/zoom_stub"
+ android:inflatedId="@+id/zoom_picker"
+ android: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="10dp" />
+
+ <TextView android:id="@+id/recording_time"
+ style="@style/RecordingTime"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentRight="true"
+ android:layout_marginTop="20dp"
+ android:layout_marginRight="10dp"
+ android:drawablePadding="8dp"
+ android:drawableLeft="@drawable/ic_recording_indicator"
+ android:visibility="gone" />
+
+ <TextView android:id="@+id/time_lapse_recording_time"
+ style="@style/RecordingTime"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/recording_time"
+ android:layout_alignParentRight="true"
+ android:visibility="gone" />
+
+ <com.android.camera.ui.IndicatorWheel android:id="@+id/indicator_wheel"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="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>
+
+ <LinearLayout android:id="@+id/camera_switch_set"
+ android:orientation="vertical"
+ android:gravity="center"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentRight="true"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:layout_marginRight="17dp">
+ <com.android.camera.RotateImageView android:id="@+id/video_switch_icon"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:src="@drawable/btn_ic_mode_switch_video"/>
+ <com.android.camera.Switcher android:id="@+id/camera_switch"
+ android:layout_width="wrap_content"
+ android:layout_height="70dp"
+ android:src="@drawable/btn_mode_switch_knob"
+ android:background="@drawable/btn_mode_switch_bg" />
+ <com.android.camera.RotateImageView
+ android:id="@+id/camera_switch_icon"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:src="@drawable/btn_ic_mode_switch_camera"/>
+ </LinearLayout>
+ </RelativeLayout>
+</com.android.camera.ui.ControlPanel>
+