android glide

CSDN Google推荐的图片加载库Glide介绍
https://github.com/bumptech/glide/wiki
glide 配置Configuration

package com.mypackage;
public class MyGlideModule implements GlideModule {
    @Override public void applyOptions(Context context, GlideBuilder builder) { // Apply options to the builder here. } 
    @Override public void registerComponents(Context context, Glide glide) { // register ModelLoaders here. }
}

Finally add a meta-data tag to your AndroidManifest.xml
file so Glide can find your module:

 
  
 
 



你可能感兴趣的:(android glide)