Suppress chooser dialog when calling Google map using intent

前端 未结 3 1250
梦如初夏
梦如初夏 2020-12-17 05:11

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         


        
3条回答
  •  情深已故
    2020-12-17 05:27

    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.

提交回复
热议问题