summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-07 19:58:32 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-07 19:58:32 +0000
commit09bfb49b8a3eccc90b5e85a80c3511a5abfca7f3 (patch)
tree3a1f3c055d8b4a728d825e66365ec34e7d68beb4 /InCallUI
parent093e3eadae7fc10f801c063758c367bcfa592808 (diff)
parent08b39346781644b26cb133511808634c27d30c06 (diff)
am 261880e5: Use correct assets for more notification icons
* commit '261880e56985a865502f4c7bf04e8f8eb2954dbb': Use correct assets for more notification icons
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/StatusBarNotifier.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/InCallUI/src/com/android/incallui/StatusBarNotifier.java b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
index ce23a37db..59add80c0 100644
--- a/InCallUI/src/com/android/incallui/StatusBarNotifier.java
+++ b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
@@ -511,7 +511,7 @@ public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
PendingIntent hangupPendingIntent =
createNotificationPendingIntent(mContext, InCallApp.ACTION_HANG_UP_ONGOING_CALL);
- builder.addAction(R.drawable.fab_ic_end_call,
+ builder.addAction(R.drawable.ic_call_end_white_24dp,
mContext.getText(R.string.notification_action_end_call),
hangupPendingIntent);
}
@@ -531,7 +531,7 @@ public class StatusBarNotifier implements InCallPresenter.InCallStateListener {
PendingIntent answerVoicePendingIntent = createNotificationPendingIntent(
mContext, InCallApp.ACTION_ANSWER_VOICE_INCOMING_CALL);
- builder.addAction(R.drawable.fab_ic_call,
+ builder.addAction(R.drawable.ic_call_white_24dp,
mContext.getText(R.string.notification_action_answer_voice),
answerVoicePendingIntent);
}