Fix wifi QR decorator not rendering

Bug: 270063908
Test: manual
Change-Id: I4627cd891b687785fe33a4d475016b3d925054d2
This commit is contained in:
Han Xu
2023-05-08 15:51:17 +08:00
parent 6aecb91bd1
commit a7f135c6b1

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);