Android:如何动态更改按钮图标颜色?

时间:2015-08-30 17:57:49

标签: android button colors

我的布局中有这个按钮:

<Button
   android:id="@+id/followers_right"
   android:drawableLeft="@drawable/ic_team"
   android:text="@string/visibility_right_followers" />

默认情况下,我的所有图标都是灰色的。但在某些情况下,我想应用特定的颜色。对于可绘制按钮,我该如何以编程方式执行此操作?

myButton.setColorFilter(getResources().getColor(R.color.tint_selected));

此行不起作用(构建错误)。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我试图找到一个解决这个有趣问题的解决方案,但我还没有。一种解决方法是使用与Drawable资源不同颜色的相同图标,

并以语法方式更改按钮的图标,

yourButtom.setCompoundDrawablesWithIntrinsicBounds(R.drawable.low, 0, 0, 0); 

但唯一的问题是,如果你想要大范围的颜色变化