Android系统中的基本图标是继承的吗?
我注意到 Android 中的某些系统程序(消息、联系人、设置等)在菜单中使用相同的图标(搜索、添加等),并且它们在(几乎)每个操作系统版本中都不同。
所以我有一个问题。它们来自系统文件吗?我可以在程序中使用这些图标,而不必将它们捕获复制粘贴到 res 文件夹中吗?
谢谢。
I've noticed that some system programs in Android (Messages, Contacts, Settings, ...) uses the same icon in the menu (search, add, ...), and they're different in (almost) every OS version.
So I have a question. Are they come from system files? Can I use these icon in my program without having to capture-copy-paste them into res folder?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android UI 指南对菜单图标是这么说的:
This is what Android UI Guidelines say about Menu Icons:
是的,您可以使用系统资源,而无需将它们复制到 res 文件夹。
这是许多系统可绘制的漂亮集合。
http://androiddrawableexplorer.appspot.com/
实现:例如:
android:icon="@android :drawable/ic_menu_save"
Yes you can use system resources without copy-ing them to your res folder.
Here is an nice collection of a lot of system drawables.
http://androiddrawableexplorer.appspot.com/
Implementation: e.g.:
android:icon="@android:drawable/ic_menu_save"
通过编码我们可以这样使用
by coding we can use like this