9
這兩個實現有什麼區別?DrawableCompat.setTint(drawable,color)vs Drawable.setColorFilter(color,mode)
DrawableCompat.setTintMode(wrappedDrawable, Mode.SRC_ATOP);
DrawableCompat.setTint(wrappedDrawable, color);
和
drawable.setColorFilter(color, Mode.SRC_ATOP);