summaryrefslogtreecommitdiffstats
path: root/res/layout-w1024dp
diff options
context:
space:
mode:
authorChih-yu Huang <akahuang@google.com>2011-08-18 14:27:11 +0800
committerChih-yu Huang <akahuang@google.com>2011-08-18 17:12:42 +0800
commitefd26d9a3ed0858971b965b9d9a68d7c6170e2ba (patch)
tree20dea41254375cf8856f96d0795f3f82274c33eb /res/layout-w1024dp
parent95788ace8ad3630312f2f94544690c448c935f9e (diff)
downloadLegacyCamera-efd26d9a3ed0858971b965b9d9a68d7c6170e2ba.zip
LegacyCamera-efd26d9a3ed0858971b965b9d9a68d7c6170e2ba.tar.gz
LegacyCamera-efd26d9a3ed0858971b965b9d9a68d7c6170e2ba.tar.bz2
Fix bug menu item too small.
bug:5146331 Change-Id: Ia4fcd61032fa7394b42697a2484ac329da45e619
Diffstat (limited to 'res/layout-w1024dp')
-rw-r--r--res/layout-w1024dp/in_line_setting_picker.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/res/layout-w1024dp/in_line_setting_picker.xml b/res/layout-w1024dp/in_line_setting_picker.xml
index f4ba7a4..72432a0 100644
--- a/res/layout-w1024dp/in_line_setting_picker.xml
+++ b/res/layout-w1024dp/in_line_setting_picker.xml
@@ -30,7 +30,7 @@
<Button android:id="@+id/decrement"
android:layout_width="72dp"
- android:layout_height="wrap_content"
+ android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:gravity="center"
android:text="@string/setting_decrement"
@@ -46,11 +46,11 @@
android:gravity="center"
android:singleLine="true"
android:textColor="@android:color/white"
- android:textSize="20dp" />
+ android:textSize="21dp" />
<Button android:id="@+id/increment"
android:layout_width="72dp"
- android:layout_height="wrap_content"
+ android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:gravity="center"
android:text="@string/setting_increment"
@@ -62,7 +62,8 @@
<!-- To have the same View(InLineSettingPicker) as the listview's components and also show the restore setting line, we have the relativelayout and control the visibilities of the restore and the setting_item component to achieve the goal. -->
<TextView android:id="@+id/restore"
android:gravity="center"
- android:textSize="22dp"
+ android:textSize="21dp"
+ android:textColor="@android:color/white"
style="@style/SettingRow">
</TextView>
</com.android.camera.ui.InLineSettingPicker>