summaryrefslogtreecommitdiff
path: root/InCallUI/res/drawable
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-04-24 15:41:26 -0700
committerAndrew Lee <anwlee@google.com>2014-04-24 15:51:00 -0700
commit24f0108f02430717ad1a0c73f5e66dc69c11fd88 (patch)
treeda0f0bb70c731163b1af5033654892bcca6ae782 /InCallUI/res/drawable
parent03c6f76d0bdefe6a9b4d3263e2391665d86b8572 (diff)
Make EndCallButton circular.
- Added FrameLayout around end call button. - Reconfigured size and clipping of the end call button. - Retyped some colors from drawables to colors. - Removed unused styles and dimensions. Bug: 13956531 Change-Id: I9a5bc5b0307521f4ef3d7a9ae61b586e4e32a76a
Diffstat (limited to 'InCallUI/res/drawable')
-rw-r--r--InCallUI/res/drawable/end_call_background.xml12
1 files changed, 3 insertions, 9 deletions
diff --git a/InCallUI/res/drawable/end_call_background.xml b/InCallUI/res/drawable/end_call_background.xml
index 53f4e5432..24b437482 100644
--- a/InCallUI/res/drawable/end_call_background.xml
+++ b/InCallUI/res/drawable/end_call_background.xml
@@ -16,13 +16,7 @@
<!-- Background drawable used to render the "end call" button. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
- <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" />
-
+ <item android:state_enabled="false" android:drawable="@color/end_call_disabled_color" />
+ <item android:state_pressed="true" android:drawable="@color/end_call_pressed_color" />
+ <item android:drawable="@color/end_call_active_color" />
</selector>