Glide 集成 OkHttp2.x 、OkHttp3.x 和 Volley

由于 Android 6.0 以后废除了 httpclient , glide 加载网络图片需要自己集成网络访问库了

一 添加 glide 依赖

在 build.gradle 添加

dependencies {
    ...
    compile 'com.github.bumptech.glide:glide:3.7.0'
    ...
}

二 集成网络访问库

1 集成 okhttp2.x

在 build.gradle 添加

dependencies {
    ...
    // 这个是用来对接 okhttp 2.x 的
    compile 'com.github.bumptech.glide:okhttp-integration:1.4.0@aar'
    // okhttp 2.x 的依赖
    compile 'com.squareup.okhttp:okhttp:2.2.0'
    ...
}

然后在 AndroidManifest.xml 文件添加

data
    android:name="com.bumptech.glide.integration.okhttp.OkHttpGlideModule"
    android:value="GlideModule" />

2 集成 okhttp 3.x

在 build.gradle 添加

dependencies {
    ...
    // 这个是用来对接 okhttp 3.x 的
    compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
    // okhttp 3.x 的依赖
    compile 'com.squareup.okhttp3:okhttp:3.2.0'
    ...
}

然后在 AndroidManifest.xml 文件添加

data
    android:name="com.bumptech.glide.integration.okhttp3.OkHttpGlideModule"
    android:value="GlideModule" />

3 集成 Volley

在 build.gradle 添加

dependencies {
    ...
    // 这个是用来对接 volley 的
    compile 'com.github.bumptech.glide:volley-integration:1.4.0@aar'
    // volley 的依赖
    compile 'com.mcxiaoke.volley:library:1.0.8'
    ...
}

然后在 AndroidManifest.xml 文件添加

data
    android:name="com.bumptech.glide.integration.volley.VolleyGlideModule"
    android:value="GlideModule" />

你可能感兴趣的:(Android-基础)