diff options
author | Wei Huang <weih@google.com> | 2011-11-17 15:14:17 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-17 15:14:17 -0800 |
commit | 4d29bb4e32a2c0b1f58659e133caf2beaede8f55 (patch) | |
tree | 59a5ebcb98149de5399832084b6525a44de1cc23 /res | |
parent | 10a42f4b16bf43c686f10bfac5d879b46421fbb0 (diff) | |
parent | 0ca031ca9fef394f27b7cc9722ffc5a198cb964e (diff) | |
download | LegacyCamera-4d29bb4e32a2c0b1f58659e133caf2beaede8f55.zip LegacyCamera-4d29bb4e32a2c0b1f58659e133caf2beaede8f55.tar.gz LegacyCamera-4d29bb4e32a2c0b1f58659e133caf2beaede8f55.tar.bz2 |
Merge "Rotate priority indicators according to the device orientation." into ics-mr1
Diffstat (limited to 'res')
-rw-r--r-- | res/layout-sw600dp/priority_indicators.xml | 40 | ||||
-rw-r--r-- | res/layout/priority_indicators.xml | 64 | ||||
-rw-r--r-- | res/values-sw600dp/dimens.xml | 2 | ||||
-rw-r--r-- | res/values-sw600dp/styles.xml | 9 | ||||
-rw-r--r-- | res/values/dimens.xml | 2 | ||||
-rw-r--r-- | res/values/styles.xml | 10 |
6 files changed, 50 insertions, 77 deletions
diff --git a/res/layout-sw600dp/priority_indicators.xml b/res/layout-sw600dp/priority_indicators.xml deleted file mode 100644 index 77067b0..0000000 --- a/res/layout-sw600dp/priority_indicators.xml +++ /dev/null @@ -1,40 +0,0 @@ -<?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. ---> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="horizontal" - android:layout_alignParentLeft="true" - android:layout_alignParentTop="true" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:padding="8dp"> - <ImageView android:id="@+id/onscreen_flash_indicator" - style="@style/OnScreenIndicator" - android:visibility="visible"/> - <ImageView android:id="@+id/onscreen_white_balance_indicator" - style="@style/OnScreenIndicator"/> - <TextView android:id="@+id/onscreen_exposure_indicator" - style="@style/OnScreenIndicator" - android:gravity="center_vertical" - android:textSize="15dp" - android:textColor="@android:color/white"/> - <ImageView android:id="@+id/onscreen_scene_indicator" - style="@style/OnScreenIndicator" - android:src="@drawable/ic_indicators_scn"/> - <ImageView android:id="@+id/onscreen_gps_indicator" - style="@style/OnScreenIndicator"/> - <ImageView android:id="@+id/onscreen_focus_indicator" - style="@style/OnScreenIndicator"/> -</LinearLayout> diff --git a/res/layout/priority_indicators.xml b/res/layout/priority_indicators.xml index a8318e0..ef4f36c 100644 --- a/res/layout/priority_indicators.xml +++ b/res/layout/priority_indicators.xml @@ -13,30 +13,40 @@ See the License for the specific language governing permissions and limitations under the License. --> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_alignParentRight="true" - android:layout_alignParentTop="true" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:padding="8dp"> - <ImageView android:id="@+id/onscreen_flash_indicator" - style="@style/OnScreenIndicator" - android:visibility="visible"/> - <ImageView android:id="@+id/onscreen_white_balance_indicator" - style="@style/OnScreenIndicator"/> - <TextView android:id="@+id/onscreen_exposure_indicator" - style="@style/OnScreenIndicator" - android:layout_marginTop="6dp" - android:layout_marginBottom="6dp" - android:gravity="center_vertical" - android:textSize="15dp" - android:textColor="@android:color/white"/> - <ImageView android:id="@+id/onscreen_scene_indicator" - style="@style/OnScreenIndicator" - android:src="@drawable/ic_indicators_scn"/> - <ImageView android:id="@+id/onscreen_gps_indicator" - style="@style/OnScreenIndicator"/> - <ImageView android:id="@+id/onscreen_focus_indicator" - style="@style/OnScreenIndicator"/> -</LinearLayout> +<com.android.camera.ui.RotateLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/on_screen_indicators" + android:layout_height="match_parent" + android:layout_width="match_parent" + style="@style/OnScreenIndicators"> + <RelativeLayout + android:layout_height="match_parent" + android:layout_width="match_parent"> + <LinearLayout + android:orientation="horizontal" + android:layout_height="@dimen/onscreen_indicators_height" + android:layout_width="wrap_content" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:gravity="center_vertical"> + <ImageView android:id="@+id/onscreen_flash_indicator" + style="@style/OnScreenIndicator" + android:visibility="visible"/> + <ImageView android:id="@+id/onscreen_white_balance_indicator" + style="@style/OnScreenIndicator"/> + <TextView android:id="@+id/onscreen_exposure_indicator" + style="@style/OnScreenIndicator" + android:paddingLeft="3dp" + android:paddingRight="3dp" + android:gravity="center_vertical" + android:textSize="@dimen/onscreen_exposure_indicator_text_size" + android:textColor="@android:color/white"/> + <ImageView android:id="@+id/onscreen_scene_indicator" + style="@style/OnScreenIndicator" + android:src="@drawable/ic_indicators_scn"/> + <ImageView android:id="@+id/onscreen_gps_indicator" + style="@style/OnScreenIndicator"/> + <ImageView android:id="@+id/onscreen_focus_indicator" + style="@style/OnScreenIndicator"/> + </LinearLayout> + </RelativeLayout> +</com.android.camera.ui.RotateLayout>
\ No newline at end of file diff --git a/res/values-sw600dp/dimens.xml b/res/values-sw600dp/dimens.xml index 3044e7d..eadd1eb 100644 --- a/res/values-sw600dp/dimens.xml +++ b/res/values-sw600dp/dimens.xml @@ -53,4 +53,6 @@ <dimen name="effect_setting_clear_text_size">23dp</dimen> <dimen name="effect_setting_clear_text_min_height">44dp</dimen> <dimen name="effect_setting_type_text_left_padding">26dp</dimen> + <dimen name="onscreen_indicators_height">36dp</dimen> + <dimen name="onscreen_exposure_indicator_text_size">18dp</dimen> </resources> diff --git a/res/values-sw600dp/styles.xml b/res/values-sw600dp/styles.xml index 0f29321..5ece4a3 100644 --- a/res/values-sw600dp/styles.xml +++ b/res/values-sw600dp/styles.xml @@ -43,13 +43,8 @@ <item name="android:textSize">12sp</item> <item name="android:textStyle">bold</item> </style> - <style name="OnScreenIndicator"> - <item name="android:layout_height">28dp</item> - <item name="android:layout_width">wrap_content</item> - <item name="android:layout_gravity">center_vertical</item> - <item name="android:focusable">false</item> - <item name="android:visibility">gone</item> - <item name="android:layout_marginRight">8dp</item> + <style name="OnScreenIndicators"> + <item name="android:layout_margin">12dp</item> </style> <style name="ReviewThumbnail"> <item name="android:layout_width">86dp</item> diff --git a/res/values/dimens.xml b/res/values/dimens.xml index 7d12a18..97372a2 100644 --- a/res/values/dimens.xml +++ b/res/values/dimens.xml @@ -51,4 +51,6 @@ <dimen name="effect_setting_clear_text_size">20dp</dimen> <dimen name="effect_setting_clear_text_min_height">45dp</dimen> <dimen name="effect_setting_type_text_left_padding">16dp</dimen> + <dimen name="onscreen_indicators_height">28dp</dimen> + <dimen name="onscreen_exposure_indicator_text_size">15dp</dimen> </resources> diff --git a/res/values/styles.xml b/res/values/styles.xml index 204a650..68e450a 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -139,14 +139,18 @@ <item name="android:background">@android:color/transparent</item> </style> <style name="OnScreenIndicator"> - <item name="android:layout_height">28dp</item> + <item name="android:layout_height">wrap_content</item> <item name="android:layout_width">wrap_content</item> - <item name="android:layout_gravity">center_horizontal</item> <item name="android:focusable">false</item> <item name="android:visibility">gone</item> - <item name="android:rotation">90</item> <item name="android:padding">1dp</item> </style> + <style name="OnScreenIndicators"> + <item name="android:layout_marginTop">8dp</item> + <item name="android:layout_marginBottom">@dimen/indicator_bar_width</item> + <item name="android:layout_marginLeft">8dp</item> + <item name="android:layout_marginRight">8dp</item> + </style> <style name="ViewfinderLableLayout"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">match_parent</item> |