diff options
Diffstat (limited to 'res/layout/mode_picker.xml')
-rw-r--r-- | res/layout/mode_picker.xml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/res/layout/mode_picker.xml b/res/layout/mode_picker.xml new file mode 100644 index 0000000..f9f8530 --- /dev/null +++ b/res/layout/mode_picker.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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.ModePicker xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/mode_picker" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="12dp" + android:layout_centerHorizontal="true" + android:layout_alignParentBottom="true"> + <com.android.camera.ui.RotateImageView android:id="@+id/current_mode" + android:layout_alignParentBottom="true" + android:layout_height="62dp" + android:layout_width="62dp" + android:background="@drawable/btn_mode_background" + android:src="@drawable/btn_ic_camera" /> + <LinearLayout android:id="@+id/mode_selection" + android:orientation="vertical" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:background="@android:color/black" + android:layout_alignParentBottom="true" + android:gravity="center" + android:visibility="invisible"> + <com.android.camera.ui.RotateImageView android:id="@+id/mode_panorama" + android:layout_height="62dp" + android:layout_width="62dp" + android:src="@drawable/btn_ic_panorama" /> + <com.android.camera.ui.RotateImageView android:id="@+id/mode_video" + android:layout_height="62dp" + android:layout_width="62dp" + android:src="@drawable/btn_ic_video" /> + <com.android.camera.ui.RotateImageView android:id="@+id/mode_camera" + android:layout_height="62dp" + android:layout_width="62dp" + android:src="@drawable/btn_ic_camera" /> + </LinearLayout> +</com.android.camera.ModePicker> |