谷歌为什么不为图标制作更多颜色?

时间:2016-08-01 15:41:20

标签: android colors icons material-design

下午好,

我不明白为什么谷歌只制作白色和黑色的材料设计图标?

enter image description here

为什么不是蓝色,红色,绿色,自定义

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

使用支持库时,您可以通过代码为任何图像着色:

drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable, Color.RED);
例如,

上面的代码将图像着色为红色。