我正在使用DrawableCompat.wrap在前棒棒糖中设置可绘图的颜色,它工作得很好。DrawableCompat.unwrap不工作前棒棒糖。我无法在调色之前得到原来的绘图。
例如:
if (v.isSelected()){
Drawable normalDrawable = getResources().getDrawable(R.drawable.sample);
Drawable wrapDrawable = DrawableCompat.wrap(normalDrawable);
DrawableCompat.setTint(wrapDrawable, getResources().getColor(R.color.sample_color));
imageButton.setImageDrawable(wrapDrawable);
}else{
Drawable normalDrawable = imageButton.getDrawable();
Drawable unwrapDrawable = DrawableCompat.unwrap(normalDrawable);
imageButton.setImageDrawable(unwrapDrawable);
}
在预棒棒糖设备中,DrawableCompact.unwrap返回带有颜色的绘图,而不是原始的绘图。
发布于 2015-10-26 11:09:20
如果您想清除色调,请调用DrawableCompat.setTintList(drawable, null)
。
Unwrap
不是一个破坏性的函数,它只允许您访问原始绘图。
下面是一个示例代码
Drawable drawable = (Drawable) ContextCompat.getDrawable(getContext(), R.drawable.google_image);
if (condition) {
drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable, ContextCompat.getColor(getContext(), R.color.grey700));
DrawableCompat.setTintMode(drawable, PorterDuff.Mode.SCREEN);
mImageView.setImageDrawable(drawable);
} else {
drawable = DrawableCompat.unwrap(drawable);
DrawableCompat.setTintList(drawable, null);
mLoginStatusGoogleImageView.setImageDrawable(drawable);
}
在中,的代码应该是:
if (v.isSelected()) {
Drawable normalDrawable = getResources().getDrawable(R.drawable.sample);
Drawable wrapDrawable = DrawableCompat.wrap(normalDrawable);
DrawableCompat.setTint(wrapDrawable, ContextCompat.getColor(getContext(), R.color.sample_color));
DrawableCompat.setTint(wrapDrawable, getResources().getColor(R.color.sample_color));
imageButton.setImageDrawable(wrapDrawable);
} else {
Drawable normalDrawable = imageButton.getDrawable();
Drawable unwrapDrawable = DrawableCompat.unwrap(normalDrawable);
DrawableCompat.setTintList(unwrapDrawable, null);
imageButton.setImageDrawable(unwrapDrawable);
}
https://stackoverflow.com/questions/30945490
复制