diff options
author | Joe Onorato <joeo@google.com> | 2010-11-27 21:26:38 -0800 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2010-11-27 21:58:49 -0800 |
commit | 5a6b4f826515c65d816e711266f0eac5ae3d37df (patch) | |
tree | 76015760d70a6a662cf151467199c67c1a287ebe /packages | |
parent | 5797f192eb598b30f8cf1e7a2107a6553eb399b8 (diff) | |
download | frameworks_base-5a6b4f826515c65d816e711266f0eac5ae3d37df.zip frameworks_base-5a6b4f826515c65d816e711266f0eac5ae3d37df.tar.gz frameworks_base-5a6b4f826515c65d816e711266f0eac5ae3d37df.tar.bz2 |
tighten up the notifciation layouts
Change-Id: I8e4f6a6412123fdd2d76381d568ab0bc3157b974
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/status_bar_notification_panel.xml | 5 | ||||
-rw-r--r-- | packages/SystemUI/res/values-xlarge/styles.xml | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/packages/SystemUI/res/layout-xlarge/status_bar_notification_panel.xml b/packages/SystemUI/res/layout-xlarge/status_bar_notification_panel.xml index a4fe909..c0612c8 100644 --- a/packages/SystemUI/res/layout-xlarge/status_bar_notification_panel.xml +++ b/packages/SystemUI/res/layout-xlarge/status_bar_notification_panel.xml @@ -62,6 +62,7 @@ <com.android.systemui.statusbar.policy.DateView android:id="@+id/date" + style="@style/StatusBarNotificationText" android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_below="@id/clock" @@ -84,7 +85,8 @@ <TextView android:id="@+id/battery_text" - android:layout_width="48dp" + style="@style/StatusBarNotificationText" + android:layout_width="56dp" android:layout_height="wrap_content" android:layout_toRightOf="@id/battery" android:layout_alignBaseline="@id/battery" @@ -104,6 +106,7 @@ <TextView android:id="@+id/network_text" + style="@style/StatusBarNotificationText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@id/network" diff --git a/packages/SystemUI/res/values-xlarge/styles.xml b/packages/SystemUI/res/values-xlarge/styles.xml index 78c1988..fb10a24 100644 --- a/packages/SystemUI/res/values-xlarge/styles.xml +++ b/packages/SystemUI/res/values-xlarge/styles.xml @@ -16,6 +16,11 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> + <style name="StatusBarNotificationText"> + <item name="android:textSize">16sp</item> + <item name="android:textColor">#ff999999</item> + </style> + <style name="StatusBarPanelSettingsRow"> <item name="android:layout_height">64dp</item> <item name="android:layout_width">match_parent</item> |