I'm just wondering how to fire up an Intent to the phone's browser to Open an specific URL and display it.
Can someone please give a hint?
Is there also a way to pass coords directly to google maps to display?
|
I'm just wondering how to fire up an Intent to the phone's browser to Open an specific URL and display it. Can someone please give a hint? Is there also a way to pass coords directly to google maps to display? |
||||
|
|
To open a URL/website you do the following:
Here's the documentation of |
|||||||||||
|
|
The short version
should work as well... |
|||
|
|
|
shortest version :P
|
||||
|
|
You can use the geo
|
|||
|
|
|
In some cases URL may start with "www". In this case you will get an exception:
The URL must always start with "http://" or "https://" so I use this snipped of code:
|
||||
|
|
I have found that if I pass a URL containing the coords to the browser, Android asks if I want the browser or the Maps app, as long as the user hasn't chosen the browser as the default. See my answer here for more info on the formating of the URL. I guess if you used an intent to launch the Maps App with the coords, that would work also. |
|||
|
|