Slide 36
Slide 36 text
XML Tint invalidates Caching
public void createCachedBitmapIfNeeded(int width, int height) {
if (this.mCachedBitmap == null || !this.canReuseBitmap(width, height)) {
this.mCachedBitmap = Bitmap.createBitmap(width, height, Config.ARGB_8888);
this.mCacheDirty = true;
}
}
// VectorDrawableCompat.java:
@sir_tilbrook https://www.youtube.com/c/anzcoders