I want to start a Google Maps activity from a button click.
It works great:
Intent mapIntent = new Intent(Intent.ACTION_VIEW, url);
mapIntent.setData(url);
startActivity(mapIntent);
... but I really want to hide the intent chooser between Browser and Maps. I want to make the button open directly Google Maps.
I tried adding geo:0,0?q= as a prefix to the URL, and this works. But, for reasons I am not able to explain, I can't use this notation or my app would not work.
In other words: Can I invoke directly the Google Maps class from its package to start it as an Intent?
Thank you.