In my design of UI of Android applications, I need some drawables for icons.
Where are the existing drawables located within the Android SDK?
In my design of UI of Android applications, I need some drawables for icons.
Where are the existing drawables located within the Android SDK?
在android.R.drawable
,在这里阅读更多:http: //docs.since2006.com/android/2.1-drawables.php
简单的资源使用:
android:icon="@android:drawable/ic_menu_save"
简单的 Java 用法:
myMenuItem.setIcon(android.R.drawable.ic_menu_save);
图标由 Google 自己免费提供, 网址为http://developer.android.com/design/downloads/index.html
我在这里找到了我的:
~/android-sdks/platforms/android-23/data/res/drawable...
谷歌提供的材料图标可以在这里找到: https ://design.google.com/icons/
您可以将它们下载为浅色PNG
和SVG
深色主题。
您可以从下面的示例路径中找到 android drawables 图标...
C:\Users\User\AppData\Local\Android\sdk\platforms\android-25\data\res\drawable-xhdpi
添加图标:https ://developer.android.com/studio/write/vector-asset-studio.html
设置图标:setIcon(R.drawable.ic_incon_name)
右键单击可绘制文件夹
点击新建
点击图片资源
然后你可以选择一个图标类型
可以像这样轻松访问大量有用的图标:
https://material.io/resources/icons/?style=baseline
来自 Google 的这个 Material design 资源也可能会有所帮助。