Android Question Panel elevation (SOLVED)

Douwe Siegersma

Member
Licensed User
Hello,

At some point in the app I want to disable or enable some buttons and other objects. I now have subs that Disables or enables the objects.
It is quite a list and I thought is was a cunning plan to hide these object by placing a panel above them. I set the elevation of the panel to 5 but all objects are still clickable. Even when the color of the panel is set opaque.
 

klaus

Expert
Licensed User
Longtime User
Add an empty event routine for the Panel like:
B4X:
Private Sub Panel1_Click

End Sub

Another solution, I would use, is to put the Buttons on a Panel and set its Visible property to True or False.
 
Upvote 0
Top