Merge "Fix wifi QR decorator not rendering" into udc-dev

This commit is contained in:
Han Xu
2023-05-08 12:18:46 +00:00
committed by Android (Google) Code Review

View File

@@ -95,9 +95,6 @@ public class QrDecorateView extends View {
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
if (!isLaidOut()) {
return;
}
if (mMaskBitmap == null) {
mMaskBitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888);
mMaskCanvas = new Canvas(mMaskBitmap);