I am using a linear layout with multiple TextViews and LinearLayout within. Example Screen:
<RelativeLayout>
<Movie LinearLayout>
<TextView>
<LinearLayout>
<TextView>
</MovieLinearLayout>
<LinearLayoutCast>
<LinearLayoutDirector>
<..>
</RelativeLayout>
Whenever I access that screen, TalkBack speaks "Showing item x of y" which is really annoying because it's rather movie information and not a list as such. How can I override TalkBack from speaking "item x of y"? Is it possible using sendAccessibilityEvent
?
Add an android:contentDescription property to them. See http://developer.android.com/training/accessibility/accessible-app.html for more advice