summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-06 16:42:45 -0700
committerYorke Lee <yorkelee@google.com>2014-10-06 16:42:45 -0700
commit158d484308c07121f0f8ebf9447c3b9e2f8d88a5 (patch)
tree50fdcf48e869352a0b72ef832e85cdba878502e9 /InCallUI
parente54ddc302576099c9a861d64e773f36c514c5ee2 (diff)
Use correctly sized answer icon and fix char limits
Bug: 17879740 Change-Id: Ie97f382e65faea5fe2804076adbc415b90c82a7f
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/res/values/strings.xml12
-rw-r--r--InCallUI/src/com/android/incallui/StatusBarNotifier.java2
2 files changed, 7 insertions, 7 deletions
diff --git a/InCallUI/res/values/strings.xml b/InCallUI/res/values/strings.xml
index 8e8a8e2bd..d174511c6 100644
--- a/InCallUI/res/values/strings.xml
+++ b/InCallUI/res/values/strings.xml
@@ -174,21 +174,21 @@
<!-- Label for "end call" Action.
It is displayed in the "Ongoing call" notification, which is shown
when the user is outside the in-call screen while the phone call is still
- active. [CHAR LIMIT=40] -->
+ active. [CHAR LIMIT=12] -->
<string name="notification_action_end_call">Hang up</string>
<!-- Label for "Video Call" notification action. This is a displayed on the notification for an
- incoming video call, and answers the call as a video call. [CHAR LIMIT=40] -->
+ incoming video call, and answers the call as a video call. [CHAR LIMIT=12] -->
<string name="notification_action_answer_video">Video</string>
<!-- Label for "Voice" notification action. This is a displayed on the notification for an
- incoming video call, and answers the call as an audio call. [CHAR LIMIT=40] -->
+ incoming video call, and answers the call as an audio call. [CHAR LIMIT=12] -->
<string name="notification_action_answer_voice">Voice</string>
<!-- Label for "Accept" notification action. This is somewhat generic, and may refer to
scenarios such as accepting an incoming call or accepting a video call request.
- [CHAR LIMIT=40] -->
+ [CHAR LIMIT=12] -->
<string name="notification_action_accept">Accept</string>
<!-- Label for "Dismiss" notification action. This is somewhat generic, and may refer to
scenarios such as declining an incoming call or declining a video call request.
- [CHAR LIMIT=40] -->
+ [CHAR LIMIT=12] -->
<string name="notification_action_dismiss">Dismiss</string>
<!-- Message for "call back" Action, which is displayed in the missed call notificaiton.
@@ -470,7 +470,7 @@
<!-- String used by AccessibilityService to announce that the call has been removed from hold [CHAR LIMIT=NONE]-->
<string name="accessibility_call_removed_from_hold">Call removed from hold.</string>
- <!-- Description of the answer target in the Slide unlock screen of Phone. [CHAR LIMIT=NONE] -->
+ <!-- Description of the answer target in the Slide unlock screen of Phone. [CHAR LIMIT=12] -->
<string name="description_target_answer">Answer</string>
<!-- Description of the send_sms target in the Slide unlock screen of Phone. [CHAR LIMIT=NONE] -->
<string name="description_target_send_sms">Send SMS</string>
diff --git a/InCallUI/src/com/android/incallui/StatusBarNotifier.java b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
index 4fa9c39ff..ce23a37db 100644
--- a/InCallUI/src/com/android/incallui/StatusBarNotifier.java
+++ b/InCallUI/src/com/android/incallui/StatusBarNotifier.java
@@ -491,7 +491,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.description_target_answer),
answerVoicePendingIntent);
}