diff options
| author | 2025-01-10 11:28:37 -0800 | |
|---|---|---|
| committer | 2025-01-14 14:38:52 -0800 | |
| commit | b4558f65a5cbd709678d1368b94c4e66167bca87 (patch) | |
| tree | 466efea44d064a92b312561a398489453286cbde /java/res/values | |
| parent | effd3e6c1bba8d5d5ce8047b9a1e455816fcd4b3 (diff) | |
Present target grid as hierarchical for a11y purposes.
Present target grid as hierarchical for a11y purposes. This makes
TalkBack to announce sub-groups of targets.
Fix: 379208685
Test: Manual test for the following cases: (i) all group present
(shortcuts, suggested, all-apps), (ii) shortcuts are missing -- the
no-target message is shown, (iii) no suggested targets.
Flag: com.android.intentresolver.announce_shortcuts_and_suggested_apps
Change-Id: If08e9bcccab9db423c5b67c759bc0854d290e880
Diffstat (limited to 'java/res/values')
| -rw-r--r-- | java/res/values/strings.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/java/res/values/strings.xml b/java/res/values/strings.xml index 2261a4a8..6504462f 100644 --- a/java/res/values/strings.xml +++ b/java/res/values/strings.xml @@ -340,4 +340,14 @@ <string name="selectable_item">Selectable item</string> <!-- Accessibility role description for a11y on button. [CHAR LIMIT=NONE] --> <string name="role_description_button">Button</string> + + <!-- Accessibility announcement for the shortcut group (https://developer.android.com/training/sharing/direct-share-targets) + in the list of targets. [CHAR LIMIT=NONE]--> + <string name="shortcut_group_a11y_title">Direct share targets</string> + <!-- Accessibility announcement for the suggested application group in the list of targets. + [CHAR LIMIT=NONE] --> + <string name="suggested_apps_group_a11y_title">App suggestions</string> + <!-- Accessibility announcement for the all-applications group in the list of targets. + [CHAR LIMIT=NONE] --> + <string name="all_apps_group_a11y_title">App list</string> </resources> |