diff options
author | Winson Chung <winsonc@google.com> | 2014-07-25 12:10:38 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2014-07-25 19:12:28 +0000 |
commit | a4cc966050aeb406dbf3d9d262e281c40826e354 (patch) | |
tree | b3769baa89f264b9d0b3e6eda412364f38638ea5 /packages/SystemUI/res | |
parent | 48e28ad06cb2cb30d3c327b0215c15dd4843fb6f (diff) | |
download | frameworks_base-a4cc966050aeb406dbf3d9d262e281c40826e354.zip frameworks_base-a4cc966050aeb406dbf3d9d262e281c40826e354.tar.gz frameworks_base-a4cc966050aeb406dbf3d9d262e281c40826e354.tar.bz2 |
Adding content description for task view buttons.
Diffstat (limited to 'packages/SystemUI/res')
-rw-r--r-- | packages/SystemUI/res/values/colors.xml | 2 | ||||
-rw-r--r-- | packages/SystemUI/res/values/strings.xml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/packages/SystemUI/res/values/colors.xml b/packages/SystemUI/res/values/colors.xml index e9fe09e..5ecba32 100644 --- a/packages/SystemUI/res/values/colors.xml +++ b/packages/SystemUI/res/values/colors.xml @@ -62,7 +62,7 @@ <!-- The recents task bar light dismiss icon color to be drawn on top of dark backgrounds. --> <color name="recents_task_bar_light_dismiss_color">#ffeeeeee</color> <!-- The recents task bar dark dismiss icon color to be drawn on top of light backgrounds. --> - <color name="recents_task_bar_dark_dismiss_color">#cc000000</color> + <color name="recents_task_bar_dark_dismiss_color">#99000000</color> <!-- The recents task bar highlight color. --> <color name="recents_task_bar_highlight_color">#28ffffff</color> <!-- The lock to task button background color. --> diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 5d4b536..ddbddd1 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -380,8 +380,12 @@ <!-- Content description of the ringer silent icon in the notification panel for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_ringer_silent">Ringer silent.</string> + <!-- Content description to tell the user that this button will remove an application from recents --> + <string name="accessibility_recents_item_will_be_dismissed">Dismiss <xliff:g id="app" example="Calendar">%s</xliff:g>.</string> <!-- Content description to tell the user an application has been removed from recents --> <string name="accessibility_recents_item_dismissed"><xliff:g id="app" example="Calendar">%s</xliff:g> dismissed.</string> + <!-- Content description to tell the user an application has been launched from recents --> + <string name="accessibility_recents_item_launched">Starting <xliff:g id="app" example="Calendar">%s</xliff:g>.</string> <!-- Content description to tell the user a notification has been removed from the notification shade --> <string name="accessibility_notification_dismissed">Notification dismissed.</string> |