gpt4 book ai didi

android - Here Maps 安卓应用

转载 作者:行者123 更新时间:2023-11-29 14:19:19 25 4
gpt4 key购买 nike

是否可以使用 Waze 或 Google map 等“Activity 启动器”启动 Android Here 应用程序?

例子:

Google map 导航器:

Action: android.intent.action.VIEW
DataUri: google.navigation:q=[address to search]&mode=[walking / transit]

位智:

Action: android.intent.action.VIEW
DataUri: waze://?q=[address to search]&navigate=yes

最佳答案

我按如下方式启动了 HERE 应用程序:

String url = "geo:" + lat + "," + lng;
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(url));
intent.setPackage("com.here.app.maps");
startActivity(intent);

但我还没有找到任何关于 Intent 的文档。但实际上它有效。

关于android - Here Maps 安卓应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26076549/

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