Android:当前用户位置的默认图标?

发布于 2024-10-21 09:09:23 字数 118 浏览 1 评论 0原文

如何获取当前用户位置的默认图标以将其显示在地图上?在地图应用程序中,它是一个蓝色数组...我想要类似的东西,但我没有找到它 android.R.drawable...我如何获得这个默认用户位置图标?

多谢!

how do I get the default icon for the current user location to display it on the map? In the maps applications, it's a blue array... I'd like to have something like that, but I don't find it it android.R.drawable... How do I get this default user location icon?

Thanks a lot!

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

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

发布评论

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

评论(1

妄断弥空 2024-10-28 09:09:23

在这里您可以找到Android 2.2的图标,当前位置图标名为ic_maps_indicator_current_position

Java 使用示例:myMenuItem.setIcon(android.R.drawable.ic_menu_save);
资源使用示例:android:icon="@android:drawable/ic_menu_save"

上面链接中的注释:

Android jar 中的某些图像不是公开的,因此不能直接使用(您可以将它们复制到您自己的应用程序中,但不能通过“android”包命名空间引用它们)。该项目区分什么是公开的和什么不是公开的。如果您尝试使用非公开的图像,您将收到一条错误消息,表明这一事实。

Here you can find the icons from Android 2.2, the current location icon is named ic_maps_indicator_current_position

Java Usage example: myMenuItem.setIcon(android.R.drawable.ic_menu_save);
Resource Usage example: android:icon="@android:drawable/ic_menu_save"

Note from the link above:

Some of the images in the Android jar are not public and therefore cannot be directly used (you can copy them to you own application, but can't reference them via the "android" package namespace). This project does not distinguish between what is public and what is not. If you try to use an image that is not public, you will get an error indicating that fact.

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