码迷,mamicode.com
首页 > 移动开发 > 详细

Android Fast ImageLoader

时间:2015-01-11 12:18:41      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

前段时间写的Android平台开源项目:Fast ImageLoader,现在分享给大家

源码地址:https://github.com/cumtkangyi/Android-Fast-ImageLoader

Android Fast ImageLoader

A cool image cache for Android platform.

DEMO地址

 

Sample Code

 
ImageView imageView = new ImageView(mContext);
ThumbnailLoader loader = ThumbnailLoader.getInstance(context, "", Constant.CACHE_DIR);
loader.loadRemoteImage(url, imageView,
                new CacheWorker.Builder(0, 0)
                        .setLoadingImage(R.drawable.load_default),
                new BaseLoadListener(imageView));

If you want to load with progress bar, please perform the following code:

ImageView imageView = new ImageView(mContext);
ProgressBar progressBar = new ProgressBar(mContext);
ThumbnailLoader loader = ThumbnailLoader.getInstance(context, "", Constant.CACHE_DIR);
loader.loadRemoteImage(url, imageView,
                new CacheWorker.Builder(0, 0)
                        .setLoadingImage(R.drawable.load_default),
                new BaseLoadListener(imageView, progressBar));

Alipay Account

kangyi888cumt@163.com

Developed By

  • Leo Kang, Ning Dai
  • Email: cumtkangyi@gmail.com
  • License

    Copyright 2012-2014 Leo.Kang Ning.Dai

    Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Android Fast ImageLoader

标签:

原文地址:http://www.cnblogs.com/kangyi/p/imageloader.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!