Android Question talkback touchscreen

Peppe B

Active Member
Licensed User
Hi, I have a project for the blind.
Thanks to a user he took a big step.

Well I was wondering if there's any way I can send a touch event.
I was studying TalkBack.
There is an event called Turn on explore by touch
it's part of the talckback, can anyone help me manipulate this event?
 

NJDude

Expert
Licensed User
Longtime User
You could open the TalkBack settings screen and enable it there:
B4X:
Private i As Intent

i.Initialize("", "")
i.SetComponent("com.google.android.marvin.talkback/com.android.talkback.TalkBackPreferencesActivity")

StartActivity(i)
 
Upvote 0

Peppe B

Active Member
Licensed User
Thanks
But I wanted to know a way to manipulate the talkback touch event
So I could manage the android for the user.
 
Upvote 0
Top