I have standard layout using coordinatorLayout
allow user to scroll up and down to see a page, and it expand or collapse based on the scroll position, and below the AppBarLayout
I have view pagers allow user to swipe left and right.
I would like to support accessibility for all users, but android talkback does not seem to work well in coordinator layout.
When I have content that occupied the entire screen inside CollapsingToolbarLayout
and the talkback only read thru all the elements on current screen and does not auto scroll down to hidden content. I had to use two fingers to scroll down so that the views become at least partial visible to the screen, then talkback will read the view.
Does anyone know how I can support auto scroll on AppBarLayout
?