Skip to content Skip to sidebar Skip to footer

Universal Image Loader Throws Unsupportedoperationexception. Not Sure Why

Everything is working great it would seem, however, UIL keeps throwing this exception. They are not fatal and are not crashing the app. My thoughts are that its just what UIL spits

Solution 1:

if you want to load images from assets folder using Android-Universal-Image-Loader then append "assets://" prefix with images paths in assets as:

StringimageUri="assets://attachments_missing/avatars/square_missing.png";
//... do same for other images..

and for more help see following issue regarding loading images from assets :

Does Android-Universal-Image-Loader support Asset folder?

Post a Comment for "Universal Image Loader Throws Unsupportedoperationexception. Not Sure Why"