如何安装 Google Inc. 附加组件 (dl-ssl.google.com)(第三方附加组件)以与谷歌地图外部库一起使用?

发布于 2024-12-25 17:36:26 字数 550 浏览 0 评论 0原文

我想使用 com.google.android.maps.MapView,但不知道如何为此下载库。我一直在查看 http://developer.android.com/sdk/adding-components。 html。但在我的 SDK 管理器中,我根本找不到“第三方附加组件”或“google inc. 附加组件 (dl-ssl.google.com)”部分。

我正在使用 eclipse 并更新了 SDK 管理器,我还更新了 SDK 管理器中的所有内容,这是我的 SDK 管理器的屏幕截图:http://cl.ly/1C1n141T2b351c0T1T3T

我已经在谷歌上搜索了几个小时了,但我似乎只找到了关于这个主题的旧链接,但没有一个能解决我的问题。我非常感谢有关如何下载该附加组件的答案,以便我可以在 Android 应用程序中创建地图视图。

I want to use com.google.android.maps.MapView, but can't figure out how to download the library for this. I have been looking at http://developer.android.com/sdk/adding-components.html. But in my SDK manager I simply can't find the section "third party add-ons" or the "google inc. add-ons (dl-ssl.google.com).

I am using eclipse and have updated the SDK manager, I've also updated everything within the SDK manager. Here's a screenshot of my SDK manager: http://cl.ly/1C1n141T2b351c0T1T3T

I've been googling around this for several hours now, but I seem to only find old links about this topic and none of them solves my issue. I would really appreciate an answer to how I can download the add-on so that I can create a mapview in my Android application.

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

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

发布评论

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

评论(1

做个少女永远怀春 2025-01-01 17:36:26

您在错误的位置寻找 Google 地图包 - 它不在附加组件下,而是在作为 Google API 一部分的每个 API 级别分支下。以下是您在应用程序中获取 Google 地图所需执行的操作。

在 SDK 管理器中,打开与您要使用的 API 级别相对应的分支 [例如 Android 2.3.3 (API 10)]。在该分支下,有一个“Google APIs by Google Inc.”。入口。确保与该分支的“SDK Platform”一起选中,然后按“安装”。等待 SDK 更改完成。

切换到您的 Eclipse 项目或创建一个新项目,然后链接到您所需的 API 级别的 Google API(例如 Google API、Google Inc、2.3.3、10)。

您还必须在清单中添加一个条目,以确保您的项目中引用了该库。在清单中的应用程序标记中,确保您有

<uses-library android:name="com.google.android.maps" />

You are looking for the Google Maps package in the wrong place -- it's not under add-ons, but instead under each API level branch as part of the Google APIs. Here is what you have to do to get Google Maps in your app.

In the SDK manager, open up the branch corresponding to the API level you want to use [e.g. Android 2.3.3 (API 10)]. Under that branch, there is a 'Google APIs by Google Inc.' entry. Make sure that is checked along with 'SDK Platform' for that branch, and press Install. Wait for the SDK changes to complete.

Switch to your Eclipse project or create a new project, and link against the Google APIs for your desired API level (e.g. Google APIs, Google Inc, 2.3.3, 10).

You will also have to add an entry to the manifest to make sure that the library is referenced in your project. Within the application tag in the manifest, make sure you have

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