Android:当前用户位置的默认图标?
如何获取当前用户位置的默认图标以将其显示在地图上?在地图应用程序中,它是一个蓝色数组...我想要类似的东西,但我没有找到它 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您可以找到Android 2.2的图标,当前位置图标名为
ic_maps_indicator_current_position
Java 使用示例:
myMenuItem.setIcon(android.R.drawable.ic_menu_save);
资源使用示例:
android:icon="@android:drawable/ic_menu_save"
上面链接中的注释:
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: