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
If you recycle your bitmap somewhere in your code, you should be sure that, when the app restart, your bitmap would be recreated. When you pass through the onCreate, no issues, but when the app is in pause and restarted it will not pass through the onCreate again, just through the onResume. I think you could recreate your bitmaps in the onResume method, but use a flag to create the bitmap in the onCreate or in the onResume, not both (onCreate and onResume are called together when the app starts and you could waste CPU cycles).