Opening the browser is very simple.
First you need to add a reference to the Phone library.
Then:
p.OpenBrowser returns an Intent object. Intents are like messages that are sent to the system which then acts based on the information stored in the intent.
StartActivity keyword can be used to open other internal activities or to send intents to the system.
First you need to add a reference to the Phone library.
Then:
B4X:
Dim p As PhoneIntents
StartActivity(p.OpenBrowser("http://www.b4x.com"))
p.OpenBrowser returns an Intent object. Intents are like messages that are sent to the system which then acts based on the information stored in the intent.
StartActivity keyword can be used to open other internal activities or to send intents to the system.