Is the following valid or prone to problems?
Is it proper to call Activity.finish AFTER you have already started another activity?
B4X:
Sub btnRead_Click
' Update table indicating user has read new instructions so they won't show next time he logs in..
'UpdateUserTable
StartActivity(unit_odom)
Log("running act finish")
Activity.Finish
Log("ran act finish")
End Sub
Is it proper to call Activity.finish AFTER you have already started another activity?