I have gone through many questions, API demo regarding Accessibility feature in Android but it couldn't help.
I want to support Accessibility in my Android application. Inbuilt Accessibility is taking care of all the focusable items and reads out the Hints
correctly when clicked.
I want to fire Accessibility events whenever user clicks on TextView
.And the first time the screen is opened, I want it to read out custom information which I provide. I have managed to do it with dispatchPopulateAccessibilityEvent
but it reads everytime when screen is resumed. Also I can not identify which view is sending the event.