这两种实现有什么区别?
DrawableCompat.setTintMode(wrappedDrawable, Mode.SRC_ATOP);
DrawableCompat.setTint(wrappedDrawable, color);
和
drawable.setColorFilter(color, Mode.SRC_ATOP);
这两种实现有什么区别?
DrawableCompat.setTintMode(wrappedDrawable, Mode.SRC_ATOP);
DrawableCompat.setTint(wrappedDrawable, color);
和
drawable.setColorFilter(color, Mode.SRC_ATOP);