Android Question Accesibility find buttons issue

hookshy

Well-Known Member
Licensed User
Longtime User
I am faceing a problem trying to add accesibility options for apps.
When I bring a panel to front , all elements behind this pannel is discovered by talkback functions and are spoken ...
with this issue the person using the app will be confused as his device will tell him there are buttons that are actually on other pages ....

Question:
Do you know what makes the talk back function see buttons behind pannels ?
 

klaus

Expert
Licensed User
Longtime User
If you have a Panel sent to back and the foreground Panel has no event the events of views behind the foreground Panel will be fired.
If a Panel is transparent the views behind are shown.
I suggest you to set Visible = False / True to hide and show the Panel instead of sendind it to the back.
 
Upvote 0

hookshy

Well-Known Member
Licensed User
Longtime User
In accesibility mode the user panel touch does not fire at all if the user touch the panell unless he put two fingers on the panel .
I did used return true to pannels touch events for all panells !
Actually the user can not press a button behind a panel but talk back find it .
 
Upvote 0
Top