gpt4 book ai didi

android.content.ActivityNotFoundException : No Activity found to handle Intent - googleMaps

转载 作者:搜寻专家 更新时间:2023-11-01 09:31:55 33 4
gpt4 key购买 nike

我正在尝试链接 ListView 项中的地址,这将使旅游景点的位置显示在谷歌地图上。我在执行此操作时遇到错误并且应用程序崩溃。在日志中,出现以下错误:

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=google.streetview:cbll=46.414382,10.013988 pkg=com.google.android.apps.maps }

我正在使用 Google 开发者网站上的代码,但它似乎不起作用。代码如下:

Uri gmmIntentUri = Uri.parse("geo:37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
mContext.startActivity(mapIntent);

我已经添加了 mContext,因为它之前有一个错误。

有人可以帮忙吗?

最佳答案

当设备/模拟器上未安装 Google map 应用程序时会发生这种情况。您需要安装谷歌地图或其他一些 map 应用程序。

尝试

Uri gmmIntentUri = Uri.parse("http://maps.google.com/maps?daddr=37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
//mapIntent.setPackage("com.google.android.apps.maps");
mContext.startActivity(mapIntent);

关于android.content.ActivityNotFoundException : No Activity found to handle Intent - googleMaps,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46441038/

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