Android - Set TalkBack accessibility focus to a specific view
问题 When TalkBack is enabled, is there any way to set the accessibility focus manual to a specific view? For instance, when my Activity is started I want TalkBack to automatically focus on a certain Button (yellow frame around the view) and read its content description. What I've tried so far: myButton.setFocusable(true); myButton.setFocusableInTouchMode(true); myButton.requestFocus(); requestFocus(), it seems, is only requesting input focus and has nothing to do with accessibility focus. I've