Android Question Go to a Web Site

johnaaronrose

Active Member
Licensed User
Longtime User
Is there a way in B4A for the user to be taken to a web site address (e.g. https://jessicaroseartist.co.uk/ in their Internet Browser (e.g. Chrome)? I feel that the answer should be obvious. I've seen code for downloading files from a web site, but what I want should be much simpler than that! I'm using B4XPages for this project: I doubt that that will make any difference to the answer, but you never know.
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
    Dim i As Intent
    i.Initialize(i.ACTION_VIEW,"https://google.com")
    StartActivity(i)
 
Upvote 1
Top