Skip to content

This is a simple ImageLoader with caches.It can dowonload a image via your config.

Notifications You must be signed in to change notification settings

sanyinchen/ImageLoader

Repository files navigation

ImageLoader

Describe

Hi,guys,this is a simple ImageLoader with caches.It can dowonload a image via your config.There are three status(onSuccess,onProcess,onFail).I hope the lib can help you in anyways.

USAGES

DownloadConfig downloadConfig = new DownloadConfig(testurl);
ImageLoader imageLoader = new ImageLoader(downloadConfig);
imageLoader.build(new DefaultImageDownloadListener() {
        @Override
        public void onSuccess(Bitmap bitmap) {
            // do something
        }
        @Override
        public void onProcess(long process, long total, long perCent) {
            // do something
        }
        
        @Override
        public void onFail() {
            // do something
        }
    });
imageLoader.startDownload();

Summary

  • If you have any question, welcome feedback.
  • If you have any question,please email to me(My email:[email protected])
  • Welcome to subscribe my google+

About

This is a simple ImageLoader with caches.It can dowonload a image via your config.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages