Android Question Panel above CustomListView

Shay

Well-Known Member
Licensed User
Longtime User
Hi

I have CustomListView, (called clv3) once I click some label, it popup new window I created using transparent panel that cover the entire screen + additional panels on top of this panel
my issue: if I click on the clv3 it still get commands (I have clv3_click, and _longClick) and it is clicking
so my click is going through the transparent panel
how do I block all button/clicks behind the panel?
 

RandomCoder

Well-Known Member
Licensed User
Longtime User
Have you added a click event for the Panel? Even if not intending to do anything with the event you should add one in your code to consume the event and stop it from triggering the CustomListView event.
 
Upvote 0
Top