I get this stacktrace from the Market developer console every once in a while; I can\'t find any way to repro the error. It\'s happening while displaying a splashscreen Imag
This exception occurs when you try to recycle or use a recycled bitmap. You should not remove bitmap.recycle() function from your existing code, it may cause Out Of Memory Error. You can try this below code to fix the issue.
BitmapDrawable bitmapDrawable = ((BitmapDrawable) profileWallpaper.getDrawable());
if (null != bitmapDrawable && !bitmapDrawable.getBitmap().isRecycled()) {
bitmapDrawable.getBitmap().recycle();
} else {
log("bitmap is already recycled");
}
bitmapDrawable = null;
Note: profileWallpaper is your imageView object