summaryrefslogtreecommitdiff
path: root/InCallUI/res/drawable
diff options
context:
space:
mode:
authorChristine Chen <christinech@google.com>2013-09-10 15:22:53 -0700
committerChristine Chen <christinech@google.com>2013-09-12 14:51:21 -0700
commit50e5dc2470dfce3f70f86bdaa5f261e367e47a5a (patch)
treed1849a172761cfec0e32def3c6b5a3892e3cf825 /InCallUI/res/drawable
parent5ab76a4f685e94beb77ab4a613fed49079513f73 (diff)
Addes xxhdpi assets for InCallUi
- Changes how End Call button looks. Bug: 10491107 Change-Id: I02271ba346a8879b4642f4a642513211d2a328fc
Diffstat (limited to 'InCallUI/res/drawable')
-rw-r--r--InCallUI/res/drawable/end_call_background.xml31
1 files changed, 7 insertions, 24 deletions
diff --git a/InCallUI/res/drawable/end_call_background.xml b/InCallUI/res/drawable/end_call_background.xml
index 33ec22fa1..53f4e5432 100644
--- a/InCallUI/res/drawable/end_call_background.xml
+++ b/InCallUI/res/drawable/end_call_background.xml
@@ -17,29 +17,12 @@
<!-- Background drawable used to render the "end call" button. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_enabled="false">
- <bitmap
- android:src="@drawable/endcall_disable"
- android:tileMode="repeat" />
- </item>
-
- <item android:state_pressed="true">
- <bitmap
- android:src="@drawable/endcall_active"
- android:tileMode="repeat" />
- </item>
-
- <item>
- <layer-list>
- <item>
- <bitmap
- android:src="@drawable/endcall_background_texture"
- android:tileMode="repeat" />
- </item>
-
- <!-- The standard "compound button" background. -->
- <item android:drawable="@drawable/btn_compound_background" />
- </layer-list>
- </item>
+ <item android:state_enabled="false"
+ android:drawable="@drawable/end_call_disabled_state" />
+
+ <item android:state_pressed="true"
+ android:drawable="@drawable/end_call_pressed_state" />
+
+ <item android:drawable="@drawable/end_call_active_state" />
</selector>