Reputation: 26678
There are a few G1 users reporting that my app won't display images. I can only imagine this is because they don't have an SD card.
My app is heavy on images. Is it appropriate to store images on the internal memory? I don't even know if there'd be enough space.
Upvotes: 0
Views: 354
Reputation: 43422
I agree with Felix that internal memory should not be used for cache. But anyway if there are not so much images you can use getCacheDir to store them. http://developer.android.com/reference/android/content/Context.html#getCacheDir().
Upvotes: 0