これら 2 つの実装の違いは何ですか?
DrawableCompat.setTintMode(wrappedDrawable, Mode.SRC_ATOP);
DrawableCompat.setTint(wrappedDrawable, color);
と
drawable.setColorFilter(color, Mode.SRC_ATOP);
これら 2 つの実装の違いは何ですか?
DrawableCompat.setTintMode(wrappedDrawable, Mode.SRC_ATOP);
DrawableCompat.setTint(wrappedDrawable, color);
と
drawable.setColorFilter(color, Mode.SRC_ATOP);