And depending on what you have specified in the "eventName" argument, you will get the event like thisprovided that I have used "Menu" as my argument value.
B4X:
Sub Menu_Click
Dim txt As String
txt = Sender
Select txt
Case "Toggle Set"
' some logic
Case "Settings"
' some other logic
StartActivity(zPreferenceActivity.screen.CreateIntent)
End Select
End Sub
There is a config or properties options on the menu in several applications that I want to have on my apk...It seems to me that there is a standard presentation of the config options...
How is it called? Is there a tutorial/example of creating it?