Hi!
I want to switch between two Activitys - without animation.
Activity1(Main) to Activity2(Optionen)
and
Activity2(Optionen) to Activity1(Main)
How does it work? The following code works only on the first ad:
greeting
Petrus
I want to switch between two Activitys - without animation.
Activity1(Main) to Activity2(Optionen)
and
Activity2(Optionen) to Activity1(Main)
How does it work? The following code works only on the first ad:
B4X:
Sub Button1_Click
'to Activity Optionen:
Dim Act2 As Intent
Act2.Initialize("", "")
Act2.SetComponent("combib.b4a.activitytest/.optionen")
Act2.Flags = 0X00010000
StartActivity(Act2)
End Sub
Petrus