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

This commit is contained in:
Michael Jurka
2012-06-22 14:38:12 -07:00
committed by Android (Google) Code Review

View File

@@ -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) {