我可以在我的应用中使用 Google Places Intent 吗?

发布于 2024-11-15 10:24:12 字数 153 浏览 0 评论 0原文

我有一个应用程序,可以显示带有用户附近地址标记的地图。我希望能够在用户点击标记时在 Google 地方信息应用中打开地址标记。我不确定Places是否足够开放供其他人随意使用。

目前我只是使用搜索 api 来获取前往该地址的路线。不是最优雅的解决方案:(

谢谢

I have an app that shows a map with markers for addresses near the user. I'd like to be able to open the address marker in the Google Places app when the user taps a marker. I'm not sure if Places is open enough for others to use at will.

Currently I'm just using the search api to get directions to the address. Not the most elegant solution :(

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只怪假的太真实 2024-11-22 10:24:12

是的,可以使用意图打开 Google Places 活动。但我不知道如何指定地址作为数据参数。实际上,你可以通过意图打开Android中的任何应用程序。要查找有关活动字符串的信息,您可以从 Dalvik 调试监视器服务器 (DDMS) 读取,例如使用 Eclipse 中的 LogCat。

有关如何启动该活动的示例,请查看从您的自己(意图)

Yes, it is possible to open the Google Places activity by using intents. But I don't know how to specify an address as data argument. Actually, you can open any App in Android by intents. To find out the information about the activity string you can read from the Dalvik Debug Monitor Server (DDMS), e.g. by using LogCat in Eclipse.

An example about how to start the activity, have a look at Open another application from your own (intent)

跨年 2024-11-22 10:24:12

您通常可以访问设备上安装的任何意图,就像访问自己的意图一样。区别在于需要添加命名空间限定。

在 Google Play 上,您可以下载一个名为 ManifestViewer 的免费应用程序来显示已安装的意图及其完整的命名空间。这个工具可以在这里找到。

当然,你需要了解是否需要以特殊方式调用意图或者是否需要附加一些输入。

You can most often access any intent installed on the device, in the same fashion as you access your own intents. The difference is the namespace qualification that needs to be added.

On Google Play you can download a free app called ManifestViewer to show installed intents and their full namespaces. This tool can be found here

Of course, you need to know if the intent needs to be invoked in a special way or if it requires some input attached.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文