summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-05-19 16:29:44 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-19 16:29:44 +0000
commit9c195e8030c0a4d42830b00faeca07deab235781 (patch)
tree89b85861831127d568348fe25688b7431ff29e36
parentddfb00180a56f254857289a1b9be51556b2ac0f9 (diff)
parent4ccef87921a49fa007ee835ba0355f56df5639ad (diff)
Merge "Use tinted voicemail delete icon"
-rw-r--r--res/drawable/ic_voicemail_delete.xml20
-rw-r--r--res/menu/call_details_options.xml2
-rw-r--r--res/values/colors.xml3
3 files changed, 24 insertions, 1 deletions
diff --git a/res/drawable/ic_voicemail_delete.xml b/res/drawable/ic_voicemail_delete.xml
new file mode 100644
index 000000000..e81da9a49
--- /dev/null
+++ b/res/drawable/ic_voicemail_delete.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
+ android:src="@drawable/ic_menu_delete_dk"
+ android:gravity="center"
+ android:tint="@color/actionbar_icon_color" />
diff --git a/res/menu/call_details_options.xml b/res/menu/call_details_options.xml
index 39c8a6760..c1daa6fe2 100644
--- a/res/menu/call_details_options.xml
+++ b/res/menu/call_details_options.xml
@@ -16,7 +16,7 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/menu_trash"
- android:icon="@drawable/ic_menu_delete_dk"
+ android:icon="@drawable/ic_voicemail_delete"
android:showAsAction="ifRoom"
android:title="@string/recentCalls_trashVoicemail"
android:onClick="onMenuTrashVoicemail"
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 301d4162f..c00ad6b75 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -121,4 +121,7 @@
<!-- Color for answered or outgoing call icons. -->
<color name="answered_call">#2aad6f</color>
+
+ <!-- Color for icons in the actionbar -->
+ <color name="actionbar_icon_color">#ffffff</color>
</resources>