Hi @Marcus AraujoHello,
What kind of choices is it? Textual, pictures?
Could you provide us a screenshot?
There may be libraries that could help you.
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private Button1 As Button
Private CheckBox1 As CheckBox
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("1")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Button1_Click
Activity.LoadLayout("2")
End Sub
Sub CheckBox1_CheckedChange(Checked As Boolean)
End Sub