android - Reloading List of Bitmaps -
i have initialization activity loads ~10 bitmaps on network. bitmaps stored in static variable , main activity started. after pressing or home main activity , navigating app, initialization process starts over. looks main activity being destroyed onpause() called. i've tried serializing bitmaps, they're big. what's best way save , restore many bitmaps without having go through initialization process again?
you should use disk cache store them see android training class displaying bitmaps efficiently, lesson caching bitmaps.
Comments
Post a Comment