How to use Universal image Loader for loading resources locally
Asked Answered
F

2

14

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.

Footman answered 31/12, 2012 at 7:52 Comment(1)
try reading this question, and it's answersCalia
J
35

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.

Janitress answered 1/1, 2013 at 10:5 Comment(6)
where is ExtendedImageDownlaoder? I am using 1.8.4 with sources.jarNupercaine
Removed. Loading from resources works out of the box since 1.8.0.Janitress
can you please answer to this question??Nupercaine
Please check this questions: #18035076Pruitt
@NOSTRA can use gif image for default image on univeral image loader ..I try with Glide.with(context).load(R.drawable.load1).asGif().diskCacheStrategy(DiskCacheStrategy.SOURCE).crossFade().into(imgaeview); if not support how we can do it. please help us sir.Geophyte
No GIF support. Won't be.Janitress
P
1

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

Pacificas answered 9/6, 2015 at 6:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.