Android Question A simple question http

SalentoFC

Member
Licensed User
Longtime User
How can I do to go to a link http after click event on an Image?
Ex: click on imgoogle and the phone open the default browser and go to www.google.it.
tks very much

Roberto
 

JTmartins

Active Member
Licensed User
Longtime User
in the click event you can use

B4X:
Dim phone As PhoneIntents
StartActivity(phone.OpenBrowser("http://www.whateveryouwant"))
 
Upvote 0
Top