imageLoder的初始化配置

来源:互联网 发布:ubuntu 16 rc.local 编辑:程序博客网 时间:2024/04/28 08:40

Quick Setup

Sergey Tarasevich edited this page on Nov 28, 2015 · 5 revisions

Manual:

  • Download JAR
  • Put the JAR in the libs subfolder of your Android project

or

Maven dependency:

<dependency>    <groupId>com.nostra13.universalimageloader</groupId>    <artifactId>universal-image-loader</artifactId>    <version>1.9.5</version></dependency>

or

Gradle dependency:

compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

2. Android Manifest

<manifest>    <!-- Include following permission if you load images from Internet -->    <uses-permission android:name="android.permission.INTERNET" />    <!-- Include following permission if you want to cache images on SD card -->    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />    ...</manifest>

3. Application or Activity class (before the first usage of ImageLoader)

public class MyActivity extends Activity {    @Override    public void onCreate() {        super.onCreate();        // Create global configuration and initialize ImageLoader with this config        ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(this)            ...            .build();        ImageLoader.getInstance().init(config);        ...    }}
1 0