Android Question Semi-opaque panel not stopping user interaction with controls beneath it.

simonwilliamson

Member
Licensed User
On the iOS version of the app I can stop a user being able to interact with controls on a panel/Pane by placing another semi-opaque panel over the top of the first panel.
When I transpose the code into the Android version it seems the user can still click on controls below the semi-opaque panel. Is there anyway to stop this interaction without the need for me to run a GetAllViewsRecursive on the panel and set enable to true for it's contents?
 

DonManfred

Expert
Licensed User
Longtime User
add a touchlistener to the panel and return true in the event to consume the touch.
 
Upvote 0
Top