summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjt1134 <jt1134@gmail.com>2013-01-27 01:42:19 -0600
committerjt1134 <jt1134@gmail.com>2013-01-30 21:00:58 -0600
commit70dd5148909e82818586e6e7eb3739f105dbf16b (patch)
tree50755eb2f7b5f1a7e116e24d2baf763a67e133e6
parent6b5877c3dc38d33afedceb2dbe5e5a2d84fac204 (diff)
downloadframeworks_base-70dd5148909e82818586e6e7eb3739f105dbf16b.zip
frameworks_base-70dd5148909e82818586e6e7eb3739f105dbf16b.tar.gz
frameworks_base-70dd5148909e82818586e6e7eb3739f105dbf16b.tar.bz2
SystemUI: highlight quick settings and notification clear buttons
Actually make use of the drawables bestowed upon us by the Google Change-Id: I54ed68cf529eec0a0b76e9e35599d70a7d38f686
-rw-r--r--packages/SystemUI/res/drawable/ic_notifications.xml2
-rw-r--r--packages/SystemUI/res/drawable/ic_notify_clear.xml2
-rw-r--r--packages/SystemUI/res/drawable/ic_notify_quicksettings.xml2
-rw-r--r--packages/SystemUI/res/layout/status_bar_expanded_header.xml3
4 files changed, 3 insertions, 6 deletions
diff --git a/packages/SystemUI/res/drawable/ic_notifications.xml b/packages/SystemUI/res/drawable/ic_notifications.xml
index 97a7623..358fea8 100644
--- a/packages/SystemUI/res/drawable/ic_notifications.xml
+++ b/packages/SystemUI/res/drawable/ic_notifications.xml
@@ -16,7 +16,7 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
- android:drawable="@drawable/ic_notify_open_normal" />
+ android:drawable="@drawable/ic_notify_open_pressed" />
<item
android:drawable="@drawable/ic_notify_open_normal" />
</selector>
diff --git a/packages/SystemUI/res/drawable/ic_notify_clear.xml b/packages/SystemUI/res/drawable/ic_notify_clear.xml
index 2163198..9c432b2 100644
--- a/packages/SystemUI/res/drawable/ic_notify_clear.xml
+++ b/packages/SystemUI/res/drawable/ic_notify_clear.xml
@@ -16,6 +16,6 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
- android:drawable="@drawable/ic_notify_clear_normal" />
+ android:drawable="@drawable/ic_notify_clear_pressed" />
<item android:drawable="@drawable/ic_notify_clear_normal" />
</selector>
diff --git a/packages/SystemUI/res/drawable/ic_notify_quicksettings.xml b/packages/SystemUI/res/drawable/ic_notify_quicksettings.xml
index 7cf3175..d8ea524 100644
--- a/packages/SystemUI/res/drawable/ic_notify_quicksettings.xml
+++ b/packages/SystemUI/res/drawable/ic_notify_quicksettings.xml
@@ -16,7 +16,7 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
- android:drawable="@drawable/ic_notify_quicksettings_normal" />
+ android:drawable="@drawable/ic_notify_quicksettings_pressed" />
<item
android:drawable="@drawable/ic_notify_quicksettings_normal" />
</selector>
diff --git a/packages/SystemUI/res/layout/status_bar_expanded_header.xml b/packages/SystemUI/res/layout/status_bar_expanded_header.xml
index d9060b6..e8ceeed 100644
--- a/packages/SystemUI/res/layout/status_bar_expanded_header.xml
+++ b/packages/SystemUI/res/layout/status_bar_expanded_header.xml
@@ -79,7 +79,6 @@
android:layout_height="50dp"
android:scaleType="center"
android:src="@drawable/ic_notify_clear"
- android:background="@drawable/ic_notify_button_bg"
android:contentDescription="@string/accessibility_clear_all"
/>
@@ -93,7 +92,6 @@
android:layout_height="50dp"
android:scaleType="center"
android:src="@drawable/ic_notify_settings"
- android:background="@drawable/ic_notify_button_bg"
android:contentDescription="@string/accessibility_desc_quick_settings"
/>
<ImageView android:id="@+id/notification_button"
@@ -101,7 +99,6 @@
android:layout_height="50dp"
android:scaleType="center"
android:src="@drawable/ic_notifications"
- android:background="@drawable/ic_notify_button_bg"
android:visibility="gone"
android:contentDescription="@string/accessibility_notifications_button"
/>