It is the same as pressing on the back key. It will return DialogResponse.CANCEL (-3).
You can show the dialog again:
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim res As Int = DialogResponse.CANCEL
Do While res = DialogResponse.CANCEL
res = Msgbox2("aaa", "bbb", "Yes", "", "No", Null)
Loop
End Sub
It is the same as pressing on the back key. It will return DialogResponse.CANCEL (-3).
You can show the dialog again:
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim res As Int = DialogResponse.CANCEL
Do While res = DialogResponse.CANCEL
res = Msgbox2("aaa", "bbb", "Yes", "", "No", Null)
Loop
End Sub