I want to know if one clicks on one of the checkboxes. How do I know that? Can anyone help me?
B4X:
Sub CreateListItem(Text As String, Width As Int, Height As Int) As Panel
Dim p As B4XView = XUI.CreatePanel("")
p.SetLayoutAnimated(0, 0, 0, Width, Height)
p.LoadLayout("checkboxen")
Label1.Text = Text
Return p
End Sub