diff options
author | Amith Yamasani <yamasani@google.com> | 2010-12-08 11:12:23 -0800 |
---|---|---|
committer | Amith Yamasani <yamasani@google.com> | 2010-12-08 11:26:41 -0800 |
commit | 1c7e49ba670ad70822d34234e3677fef53e94569 (patch) | |
tree | 5086a5ddfe79db221e22c1fe7697dd269f308a2b /res/values | |
parent | 126f5ecf4f5e53c08b0b68a81c44bd9840fd0907 (diff) | |
download | packages_apps_settings-1c7e49ba670ad70822d34234e3677fef53e94569.zip packages_apps_settings-1c7e49ba670ad70822d34234e3677fef53e94569.tar.gz packages_apps_settings-1c7e49ba670ad70822d34234e3677fef53e94569.tar.bz2 |
Beautify WiFi dialog layout for x-large
Bug: 3237631
Change-Id: Ibc70008b345fc3f7213ea2db1e6ec2ddb66a1d53
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/styles.xml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml index 991637b..969742f 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -81,5 +81,32 @@ <style name="Theme.CreateShortCut" parent="android:Theme.Holo.DialogWhenLarge"> </style> - + + <style name="wifi_item"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_marginTop">8dip</item> + <item name="android:layout_marginLeft">16dip</item> + <item name="android:layout_marginRight">16dip</item> + <item name="android:orientation">vertical</item> + <item name="android:gravity">left</item> + </style> + + <style name="wifi_item_label"> + <item name="android:layout_width">wrap_content</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:textSize">14sp</item> + </style> + + <style name="wifi_item_content"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:textSize">18sp</item> + </style> + + <style name="wifi_section"> + <item name="android:layout_width">match_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:orientation">vertical</item> + </style> </resources> |