有没有一种简单的方法可以将Material Design图标存储库中的所有图标导入到android项目中,而无需手动进行操作?
有没有一种简单的方法可以将Material Design图标存储库中的所有图标导入到android项目中,而无需手动进行操作?
Answers:
请按照以下步骤启动Vector Asset Studio:
- 在Android Studio中,打开一个Android应用程序项目。
- 在项目窗口中,选择Android视图。
- 右键单击res文件夹,然后选择“新建”>“向量资产”。
打开Vector Asset Studio之后,您可以如下添加材质图标:
- 选择“材质图标”(通过单击剪贴画:图标)
- 点击选择
- 选择材质图标
您可以使用适用于android studio的新插件 Android Material Design Icon Generator Plugin 来帮助您使用Google提供的这些Material图标: Google material-design-icons
这是一个脚本,用于克隆位于的材料设计图标的github存储库
https://github.com/google/material-design-icons
并创建所有文件的索引。它还按类别将svg文件复制到子目录。您可以以此为基础将感兴趣的文件复制到项目中-只需根据自己的喜好修改find和cp copy语句即可。例如,如果您需要某个大小的png-它们位于相邻目录中,则需要相应地修改find and copy命令。
#!/bin/bash
# WF 2016-06-04
# get google material design icons
# see http://stackoverflow.com/questions/28684759/import-material-design-icons-into-an-android-project
tmp=/tmp/icons
index=$tmp/index.html
mkdir -p $tmp
cd $tmp
if [ ! -d material-design-icons ]
then
git clone https://github.com/google/material-design-icons
fi
cat << EOF > $index
<html>
<head>
<head>
<body>
<h1>Google Material Design Icons</h1>
EOF
for icon in `find . -name *.svg | grep production | grep 48`
do
svg=`basename $icon .svg`
category=`echo $icon | cut -f3 -d '/'`
echo $category $svg.svg
mkdir -p $tmp/$category
cp $icon $tmp/$category
echo " <img src='"$icon"' title='"$category $svg"' >" >> $index
done
cat << EOF >> $index
</body>
</html>
EOF
我发现此链接对我有用。
https://dev.materialdesignicons.com/getting-started/android
gradle实现可用
dependencies {
implementation 'net.steamcrafted:materialiconlib:1.1.5'
}
添加gradle依赖项后,您可以通过这种方式创建菜单项。
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" <!-- important, you'll have to include this to use the custom xml attributes -->
xmlns:tools="http://schemas.android.com/tools" >
<!-- example of a menu item with an icon -->
<item
android:title="Disable Wifi"
app:showAsAction="always"
app:materialIcon="wifi_off" <!-- This sets the icon, HAS AUTOCOMPLETE ;) -->
app:materialIconColor="#FE0000" <!-- Sets the icon color -->
/>
</menu>