gpt4 book ai didi

android - 如何提示用户选择默认导航应用程序

转载 作者:太空宇宙 更新时间:2023-11-03 11:03:28 25 4
gpt4 key购买 nike

我有一个应用程序可以让用户点击地址以从他当前的位置开始导航。现在打开Waze .但现在我想让用户在安装的 map 、位智和其他导航应用程序之间进行选择,并将其中一个设置为默认值。

我尝试使用:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format(Locale.US, "geo:%.8f,%.8f", latitude, longitude)));
startActivity(Intent.createChooser(intent, "Select an application"));

它让我选择但它不启动导航,只是 map 上的一个经典点。我想要的是打开任何应用程序的导航。对于 map 它是:

Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);

但它并没有让用户使用哪个应用。

那么有没有办法自动做到这一点?如果不能,还有什么可以让用户选择的替代方案?

最佳答案

执行 intent.setPackage("com.google.android.apps.maps"); 您是在强制使用 Google map 。来自 the documentation :

public Intent setPackage (String packageName)

(Usually optional) Set an explicit application package name that limits the components this Intent will resolve to. If left to the default value of null, all components in all applications will considered. If non-null, the Intent can only match the components in the given application package.

只需删除它:

Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
startActivity(mapIntent);

更新:

似乎 Waze 响应 http://maps.google.com Intents,因此您可以通过这种方式实现您想要的功能(不适用于 iCoyote):

Uri gmmIntentUri = Uri.parse("http://maps.google.com/maps?q=Taronga+Zoo,+Sydney+Australia");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
startActivity(mapIntent);

关于android - 如何提示用户选择默认导航应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36899248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com