Android-ImageLoader的最基础的操作
Posted 白日梦游
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-ImageLoader的最基础的操作相关的知识,希望对你有一定的参考价值。
//以下为一个ImageLoader类,这里需要在配置文件中注册
package com.example.yuekaodemo_02;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.nostra13.universalimageloader.core.ImageLoaderConfiguration;
import android.app.Application;
public class MyImageLoader extends Application {
@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();
initImageLoader();
}
public void initImageLoader(){
//获得ImageLoader对象
ImageLoader imageLoader = ImageLoader.getInstance();
//得到构建对象
ImageLoaderConfiguration.Builder builder = new ImageLoaderConfiguration.Builder(this);
//初始化ImageLoader
imageLoader.init(builder.build());
}
}
-------------------------------------------------------分割线----------------------------------------------------------------------
//以下为ImageLoader在OnCreate中使用的方法
ImageLoader.getInstance().displayImage(imgPath, img); //参数一:网络路径 参数二:加载图片的控件
//下面给大家两个ImageLoader的详细介绍的网站
http://www.open-open.com/lib/view/open1433940304473.html
http://blog.csdn.net/xiaanming/article/details/26810303
以上是关于Android-ImageLoader的最基础的操作的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Redux connect 中的操作对测试组件进行快照?