iOS Question Return to app after .OpenURL

JackKirk

Well-Known Member
Licensed User
Longtime User
In B4A I can launch a webpage from an app via:
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...
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Any suggestions as to how to get B4i to more closely mimic B4A?
This question is not related to B4i or B4A. It is related to the differences between iOS and Android.

In iOS you never close applications. When the user clicks on the home button the user is taken to the home screen. Starting from iOS 9 there is a small link at the top left corner that takes the user to the previous application.
 
Last edited:
Upvote 0
Top