diff options
author | Yorke Lee <yorkelee@google.com> | 2014-10-07 18:26:20 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-07 18:26:20 +0000 |
commit | ed70524cfac827fd708a40f1a3a61e89ba8f6185 (patch) | |
tree | a2c17d08f43e691d8c00a2d929cda26e98a2cf3f /InCallUI | |
parent | 21ea95bbe4862546e8d5ea006762c0d9f0e78ccb (diff) | |
parent | 5e96901aec6edf541eb38f1fdcdceebca9e52686 (diff) |
am 5fd0f5fa: am 03add05e: am 83dec358: am 60104e03: Use correctly sized answer icon and fix char limits
* commit '5fd0f5fabe11b2f23e468481cb0a5c77dce33b55':
Use correctly sized answer icon and fix char limits
Diffstat (limited to 'InCallUI')
-rw-r--r-- | InCallUI/res/values/strings.xml | 12 | ||||
-rw-r--r-- | InCallUI/src/com/android/incallui/StatusBarNotifier.java | 2 |
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); } |