Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Universal image Loader for loading resources locally

I want to know how can i use nostra13 / Android-Universal-Image-Loader for displaying Images locally i.e from drawable folder along with the Memorycache. I want to use it with ViewPager. any help will be greatly appreciated.

like image 872
Manoj Avatar asked Dec 31 '12 07:12

Manoj


2 Answers

To load images from assets and drawables you should take ExtendedImageDownloader from example project (this class is not a part of library yet) and also set it to configuration.

UPD: Loading local resources (from drawable, assets, content provider) works out of the box since UIL v1.8.0.

See README:

String imageUri = "assets://image.png"; // from assets
String imageUri = "drawable://" + R.drawable.image; // from drawables (only images, non-9patch)

NOTE: Use drawable:// only if you really need it! Always consider the native way to load drawables — ImageView.setImageResource(...) instead of using of ImageLoader.

like image 95
nostra13 Avatar answered Nov 05 '22 05:11

nostra13


Whenever More than one image load from resource dynamically (@runtime) than prefer these one:

String imgUri = "drawable://" + getResources().getIdentifier(imgName, "drawable", getActivity().getPackageName());

Here, imgName = Name of image in resource

like image 1
Dhruv Raval Avatar answered Nov 05 '22 03:11

Dhruv Raval