Hi,
I'm trying to use StartActivity to start an activity from my own project, however using an intent!
Activity: TopAct
Packagename: com.rootsoft.viewcontainer
So something like this, but it doesn't show my activity.
Note that I need to use an intent and not
Regards,
Tomas
I'm trying to use StartActivity to start an activity from my own project, however using an intent!
Activity: TopAct
Packagename: com.rootsoft.viewcontainer
So something like this, but it doesn't show my activity.
B4X:
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_MAIN, "")
Intent1.SetComponent("com.rootsoft.viewcontainer.HomeActivity")
StartActivity(Intent1)
Note that I need to use an intent and not
B4X:
StartActivity(TopAct)
Regards,
Tomas