Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

up vote 0 down vote accepted

The only way you would get "the intent chooser between Browser and Maps" is if your URL is an http:// URL. The proper way to open the Google Maps Android app is to use a geo: URL, not an http:// URL.

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.

Then write a different app. Or, open the Google Maps Web site rather than the Google Maps Android app.

share|improve this answer
Ok. This is bad news for me, but thanks. – daliz Jan 21 '11 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.