M mscientist33 Active Member Licensed User Oct 9, 2021 #1 I need to open a URL link using a button with the phones default app for web browsing. Is this possible? "edit" Figured it out. Using: B4X: Dim ph As PhoneIntents Dim i As Intent i = ph.OpenBrowser(URL) StartActivity(i) If this isn't the best way, please let me know. Last edited: Oct 9, 2021
I need to open a URL link using a button with the phones default app for web browsing. Is this possible? "edit" Figured it out. Using: B4X: Dim ph As PhoneIntents Dim i As Intent i = ph.OpenBrowser(URL) StartActivity(i) If this isn't the best way, please let me know.
M Mahares Expert Licensed User Longtime User Oct 9, 2021 #2 mscientist33 said: open a URL link using a button with the phones default app for web browsing Click to expand... B4X: Dim ph As PhoneIntents StartActivity(ph.OpenBrowser("http://www.google.com")) Upvote 0
mscientist33 said: open a URL link using a button with the phones default app for web browsing Click to expand... B4X: Dim ph As PhoneIntents StartActivity(ph.OpenBrowser("http://www.google.com"))