Android动态修改选中和不选中的Button图片颜色

Posted Jason_Lee155

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android动态修改选中和不选中的Button图片颜色相关的知识,希望对你有一定的参考价值。

需求:

标题可能不太容易让人理解,直接看图吧:

比如这三个Button,选中的时候图片是蓝色,不选中的时候图片是白色。正常情况下,切图要切两套,一张白底,一张蓝底。可如果UI只给你白底呢?那么也只能代码动态修改了。

实现:

android Support V4 的包中提供了 DrawableCompat 类,很容易写出如下的辅助方法来实现 Drawable 的着色:

public static Drawable tintDrawable(Drawable drawable, ColorStateList colors) {
    final Drawable wrappedDrawable = DrawableCompat.wrap(drawable);
    DrawableCompat.setTintList(wrappedDrawable, colors);
    return wrappedDrawable;
}
         // 通话记录变色
Drawable originDrawable0 = getDrawable(R.mipmap.icon_call_records_48);
if (originDrawable0 != null) {
    originDrawable0.setBounds(0, 0, originDrawable0.getMinimumWidth(), originDrawable0.getMinimumHeight());
    Drawable wrapDrawable0 = tintDrawable(originDrawable0, ColorStateList.valueOf(getColor(R.color.dial_search_address_blue)));
    callRecordsRbtn.setCompoundDrawables(wrapDrawable0, null, null, null);
}

以上是关于Android动态修改选中和不选中的Button图片颜色的主要内容,如果未能解决你的问题,请参考以下文章

android怎么把checkbox状态设置为选中状态

Android中的checkBOX在代码中怎么设置至少选中一个?

IOS中button的选中和高亮的区别

js动态生成的checkbox取值和选中事件

Android CheckBox修改选中状态框内部颜色及样式

Vue-cli中如何实现checkbox选中哪个删除哪个?