I created a menu option to close out of the current activity and start a new activity...
it seems to work fine on my Samsung Galaxy S7 phone...
it works most of the time on my Nexus 10 tablet...
it never works on my Coby 9.7 tablet...
the only conclusion i can come to is maybe something to do with OS versions?
any thoughts?
thanks in advance
it seems to work fine on my Samsung Galaxy S7 phone...
it works most of the time on my Nexus 10 tablet...
it never works on my Coby 9.7 tablet...
the only conclusion i can come to is maybe something to do with OS versions?
any thoughts?
thanks in advance
B4X:
Sub mnuX_Click
Dim Answ As Int
Dim txt As String
txt = "Do you really want to quit the current " & vX & " activity?" & CRLF & "NOTE: You will lose the current progress."
Answ = Msgbox2(txt, "A T T E N T I O N", "Yes", "", "No", Null)
If Answ = DialogResponse.POSITIVE Then
Main.vX = 1 'set a variable in the main activity....should this maybe be after the activity.finish?
Activity.Finish
StartActivity("X")
End If
End Sub