diff options
author | Wu-cheng Li <wuchengli@google.com> | 2010-11-30 18:55:32 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2010-12-16 16:15:05 +0800 |
commit | 14326ce185dd085605992cceb4b0c94f1885dd01 (patch) | |
tree | a94ce5421066b86744a797f99b550e9be54afe19 /res/values/styles.xml | |
parent | e50d2553aeb9e55504697e2a72759e8f46ee2992 (diff) | |
download | LegacyCamera-14326ce185dd085605992cceb4b0c94f1885dd01.zip LegacyCamera-14326ce185dd085605992cceb4b0c94f1885dd01.tar.gz LegacyCamera-14326ce185dd085605992cceb4b0c94f1885dd01.tar.bz2 |
Fix the bug that video quality string is cropped.
1. Decrease the font size.
2. Increase the width of first column in setting popup windows.
bug:3287018
Change-Id: I5439c69094823f208e5e279f129b481141ed1108
Diffstat (limited to 'res/values/styles.xml')
-rw-r--r-- | res/values/styles.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index d31938b..da32dbc 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -71,10 +71,21 @@ <item name="android:textSize">16dp</item> <item name="android:textStyle">bold</item> </style> - <style name="SettingPickerText"> + <style name="SettingTitleText"> <item name="android:textSize">22dp</item> + <item name="android:layout_gravity">left|bottom</item> + <item name="android:layout_width">wrap_content</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:singleLine">true</item> + <item name="android:textColor">@android:color/white</item> + <item name="android:layout_marginLeft">10dp</item> + <item name="android:layout_marginBottom">10dp</item> + <item name="android:paddingLeft">16dp</item> + </style> + <style name="SettingPickerText"> + <item name="android:textSize">21dp</item> <item name="android:gravity">left|center_vertical</item> - <item name="android:layout_width">190dp</item> + <item name="android:layout_width">200dp</item> <item name="android:layout_height">match_parent</item> <item name="android:singleLine">true</item> </style> |