Android Question Panel within a panel

merlin2049er

Well-Known Member
Licensed User
Longtime User
Hi, will these panels work within other panels?

I seem to have a problem with some click events on panels within panels.

I've made sure that the panel I'd like to click is on the foreground.
 

Douglas Farias

Expert
Licensed User
Longtime User
when u want to press a panel and not background panel u can use
B4X:
Sub panel1_Click
End Sub

for example

i have a panellala inside i have a panel1.

if i want to get click on panel1 i need to add
B4X:
Sub panel1_Click
End Sub

else i need to remove
B4X:
Sub panel1_Click
End Sub

and all clicks go to panellala
 
Upvote 0

Douglas Farias

Expert
Licensed User
Longtime User
Here, i made a example
 

Attachments

  • panel.zip
    317 KB · Views: 111
Upvote 0
Top