您的位置:首页 > 其它

imageLoder的初始化配置

2016-04-09 11:17 393 查看


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);
...
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息