Searched defs:mFolderIconBitmap (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java309 private Bitmap mFolderIconBitmap; field in class:Launcher
2236 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2237 mFolderIconBitmap.getHeight() != height) {
2238 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2239 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2260 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncher.java325 private Bitmap mFolderIconBitmap; field in class:Launcher
2433 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2434 mFolderIconBitmap.getHeight() != height) {
2435 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2436 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2457 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);

Completed in 49 milliseconds