Fixed
Status Update
Comments
ch...@google.com <ch...@google.com>
co...@gmail.com <co...@gmail.com> #2
Hello,
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs
and request features
on Google Cloud products. Please go through
I recommend you to
For now, I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you!
ch...@google.com <ch...@google.com>
lu...@gmail.com <lu...@gmail.com> #3
Just a small workaround while it is not released...
snackbar.setCallback(new Snackbar.Callback() {
@Override
public void onShown(Snackbar snackbar) {
snackbar.getView().setContentDescription("YOUR TEXT HERE");
snackbar.getView().sendAccessibilityEvent(AccessibilityEvent.TYPE_ANNOUNCEMENT);
}
});
snackbar.setCallback(new Snackbar.Callback() {
@Override
public void onShown(Snackbar snackbar) {
snackbar.getView().setContentDescription("YOUR TEXT HERE");
snackbar.getView().sendAccessibilityEvent(AccessibilityEvent.TYPE_ANNOUNCEMENT);
}
});
ch...@google.com <ch...@google.com> #4
Released in v23.1.0.
Description
Version used: 22.2.1
Theme used: AppCompat
Devices/Android versions reproduced on: Nexus 6
I am new to accessibility, but I have a "category" button that a user can click on to show some content related that content. If there is no content in that category - I set a snackbar to appear saying "there is no content in this category".
Shouldn't TalkBack automatically read this aloud after a user clicks on it? If not, the developer documentation should be updated on how to handle this type of scenario.