如何从edittext中的drawable中删除色调?

时间:2016-09-02 14:50:55

标签: android android-edittext android-support-library android-drawable

美好的一天。我有一个问题。我将EditText drawable的颜色更改为焦点,并在焦点更改时将其更改为默认颜色。一切都很好,直到支持库更新(这是我的假设)现在,drawable的颜色不会切换回正常。感谢大家提前=)

这是我的代码:

@Override
public Drawable setTint(Drawable d, int color) {
    Drawable wrappedDrawable = DrawableCompat.wrap(d);
    DrawableCompat.setTint(wrappedDrawable, color);
    return wrappedDrawable;
}

@Override
public void setEditTextDrawables(final EditText editText, final int drawable) {
    editText.setCompoundDrawablesWithIntrinsicBounds(drawable, 0, 0, 0);
    editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View view, boolean b) {
            if (b){
                Drawable icon = getResources().getDrawable(drawable);
                editText.setCompoundDrawablesWithIntrinsicBounds(setTint(icon,
                        getResources().getColor(R.color.colorAccent)), null, null, null);
            }else if (!b){
                Drawable icon = getResources().getDrawable(drawable);
                editText.setCompoundDrawablesWithIntrinsicBounds(setTint(icon,
                        getResources().getColor(R.color.colorGreyIcon)), null, null, null);
            }
        }
    });
}

这是来自app的屏幕:

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:11)

According to the Android documentation on Drawable#setTint(int):

  

要清除色调,请将null传递给setTintList(ColorStateList)

注意:如果您之前在活动中的同一个Drawable Id上设置了色调,那么仅仅调用getDrawable(int)来创建新的Drawable就不足以清除色调。

答案 1 :(得分:6)

请注意,setTintList( null )仅适用于API 21以上(Android 5.0,Lollipop)。因此,建议使用ImageViewCompat

ImageViewCompat.setImageTintList( iv,null);