I want to call google map intent without showing \"Complete Action Dialog\"?
Is it possible? Here is my code.
String uri = \"http://maps.google.com/m
Use the Google Maps URI rather than "http://[...] "
It goes something like this:
String uri = "geo:" + latitude + "," + longitude
Check out http://developer.android.com/guide/appendix/g-app-intents.html for the info.