sanyinchen / ImageLoader

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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:sanyinchen@gmail.com)
  • Welcome to subscribe my google+

About

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


Languages

Language:Java 100.0%