android: bug fix for OutOfMemeoryError while loading slideshow, handle exception. reported in PlayStore.

This commit is contained in:
Joachim Fritzsch 2013-08-13 13:07:45 +02:00
parent 984bef78ea
commit 84c5bd353d
1 changed files with 1 additions and 0 deletions

View File

@ -342,6 +342,7 @@ public class ClientStatus {
}
}
} catch(Exception e) {if(Logging.WARNING) Log.w(Logging.TAG,"exception for project " + project.master_url,e);}
catch (OutOfMemoryError oome) {if(Logging.WARNING) Log.w(Logging.TAG,"updateSlideshowImages, OutOfMemeryError");}
}
if(Logging.DEBUG) Log.d(Logging.TAG, "updateSlideshowImages() has added " + counter + " images.");
if(Logging.DEBUG) Log.d(Logging.TAG,"updateSlideshowImages() slideshow contains " + slideshowImages.size() + " bitmaps.");