Merge "Added focused state to quickcontacts shortcut" into ics-mr1

This commit is contained in:
Peter Ng
2011-11-07 14:37:31 -08:00
committed by Android (Google) Code Review
8 changed files with 12 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

View File

@@ -15,14 +15,14 @@
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_focused="false"
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/quickcontact_badge_overlay_normal_dark" />
<item
android:state_pressed="true"
android:drawable="@drawable/quickcontact_badge_overlay_pressed_dark" />
<item
android:state_pressed="false"
android:state_focused="true"
android:drawable="@drawable/quickcontact_badge_overlay_focused_dark" />
<item
android:drawable="@drawable/quickcontact_badge_overlay_normal_dark" />
</selector>

View File

@@ -15,14 +15,14 @@
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_focused="false"
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/quickcontact_badge_overlay_normal_light" />
<item
android:state_pressed="true"
android:drawable="@drawable/quickcontact_badge_overlay_pressed_light" />
<item
android:state_pressed="false"
android:state_focused="true"
android:drawable="@drawable/quickcontact_badge_overlay_focused_light" />
<item
android:drawable="@drawable/quickcontact_badge_overlay_normal_light" />
</selector>