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

/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java314 private Bitmap mFolderIconBitmap; field in class:Launcher
2294 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2295 mFolderIconBitmap.getHeight() != height) {
2296 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2297 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2318 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncher.java342 private Bitmap mFolderIconBitmap; field in class:Launcher
2965 if (mFolderIconBitmap == null || mFolderIconBitmap.getWidth() != width ||
2966 mFolderIconBitmap.getHeight() != height) {
2967 mFolderIconBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
2968 mFolderIconCanvas = new Canvas(mFolderIconBitmap);
2989 mFolderIconImageView.setImageBitmap(mFolderIconBitmap);

Completed in 203 milliseconds