summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/drawable/ic_notify_rotation.xml
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@android.com>2012-05-08 13:56:44 -0400
committerDaniel Sandler <dsandler@android.com>2012-05-09 03:05:58 -0400
commitfc753d2dfa6f1bfafce59e1a2049e640b1629a83 (patch)
tree5b5c0850fc8c41c83a68be735ccbf27de882a786 /packages/SystemUI/res/drawable/ic_notify_rotation.xml
parentfbab8ae9d562ee7ebe22ec6bcf3aa03d4db106fb (diff)
downloadframeworks_base-fc753d2dfa6f1bfafce59e1a2049e640b1629a83.zip
frameworks_base-fc753d2dfa6f1bfafce59e1a2049e640b1629a83.tar.gz
frameworks_base-fc753d2dfa6f1bfafce59e1a2049e640b1629a83.tar.bz2
More visual refresh in the phone notification panel.
Bug: 6418617 Change-Id: Iae9b02084989fad3ec8bb8c88a84c0ec96fc4f22
Diffstat (limited to 'packages/SystemUI/res/drawable/ic_notify_rotation.xml')
-rw-r--r--packages/SystemUI/res/drawable/ic_notify_rotation.xml27
1 files changed, 18 insertions, 9 deletions
diff --git a/packages/SystemUI/res/drawable/ic_notify_rotation.xml b/packages/SystemUI/res/drawable/ic_notify_rotation.xml
index 213af80..11bc22c 100644
--- a/packages/SystemUI/res/drawable/ic_notify_rotation.xml
+++ b/packages/SystemUI/res/drawable/ic_notify_rotation.xml
@@ -14,14 +14,23 @@
limitations under the License.
-->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_checked="true"
- android:drawable="@drawable/ic_notify_rotation_on_normal" />
- <item android:state_checked="true" android:state_pressed="true"
- android:drawable="@drawable/ic_notify_rotation_on_pressed" />
- <item android:state_pressed="true"
- android:drawable="@drawable/ic_notify_rotation_off_pressed" />
- <item
- android:drawable="@drawable/ic_notify_rotation_off_normal" />
+<selector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:constantSize="true">
+ <item android:state_checked="true" android:state_pressed="true">
+ <bitmap android:src="@drawable/ic_notify_rotation_on_pressed"
+ android:gravity="center" />
+ </item>
+ <item android:state_checked="true">
+ <bitmap android:src="@drawable/ic_notify_rotation_on_normal"
+ android:gravity="center" />
+ </item>
+ <item android:state_pressed="true">
+ <bitmap android:src="@drawable/ic_notify_rotation_off_pressed"
+ android:gravity="center" />
+ </item>
+ <item>
+ <bitmap android:src="@drawable/ic_notify_rotation_off_normal"
+ android:gravity="center" />
+ </item>
</selector>