Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab779e0b authored by Michael Jurka's avatar Michael Jurka Committed by Android (Google) Code Review
Browse files

Merge "Increase bitmap memory cap for widgets (Bug 6597440)" into jb-dev

parents 40a9da3b e92aad43
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -190,7 +190,9 @@ class AppWidgetServiceImpl {
        WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
        int height = wm.getDefaultDisplay().getRawHeight();
        int width = wm.getDefaultDisplay().getRawWidth();
        mMaxWidgetBitmapMemory = 4 * width * height;
        // Cap memory usage at 1.5 times the size of the display
        // 1.5 * 4 bytes/pixel * w * h ==> 6 * w * h
        mMaxWidgetBitmapMemory = 6 * width * height;
    }

    public void systemReady(boolean safeMode) {