Hi all, I want show/hide a panel created from designer on MENU click event.
Here the code:
how can in some Sub hide that panel1 ? tnx
Here the code:
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean 'return true if you want to consume the event
If KeyCode = KeyCodes.KEYCODE_MENU Then
Activity.LoadLayout("layoutShowOneCliente")
Panel1.visible = True
Return True
End If
Return False
End Sub
how can in some Sub hide that panel1 ? tnx