In B4A I can launch a webpage from an app via:
And when the user closes the browser - there's the app all ready to continue.
In B4i I can launch a webpage from an app via:
But when the user closes the browser - the app has to be manually relaunched.
Any suggestions as to how to get B4i to more closely mimic B4A?
Thanks...
B4X:
Private wrk_intent As Intent
wrk_intent.Initialize(wrk_intent.ACTION_VIEW, "http://...
StartActivity(wrk_intent)
And when the user closes the browser - there's the app all ready to continue.
In B4i I can launch a webpage from an app via:
B4X:
Main.App.OpenURL("http://...
But when the user closes the browser - the app has to be manually relaunched.
Any suggestions as to how to get B4i to more closely mimic B4A?
Thanks...