Glide
是一個快速高效的多媒體管理和圖像加載的框架,封裝了Android
平臺的多媒體的解碼,內存和硬盤緩存等,Glide
支持解碼、顯示視頻、圖像和GIFs,Glide是基於定製的HttpUrlConnection,
下面是關於Glide的配置和使用。css
配置很簡單,只要在Module的Gradle添加依賴便可android
compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v4:25.3.0'
固然,若是涉及到網絡加載圖片,記得添加網絡權限git
<uses-permission android:name="android.permission.INTERNET" />
Glide支持Activity和Fragment的綁定github
Glide.with(Context context);
Glide.with(Activity activity);
Glide.with(FragmentActivity activity);
Glide.with(Fragment fragment);
將Activity/Fragment做爲with()參數的好處是:圖片加載會和Activity/Fragment的生命週期保持一致數組
Glide支持網絡資源、assets資源、Resources資源、File資源、Uri資源、字節數組緩存
Glide.with(this).load("http://pic9/258/a2.jpg").into(iv); Glide.with(this).load("file:///xxx.jpg").into(iv); Glide.with(this).load(R.mipmap.ic_launcher).into(iv); Glide.with(this).load(file).into(iv); Glide.with(this).load(uri).into(iv); Glide.with(this).load(byte[]).into(iv);
Glide.with(this).load(imageUrl).asBitmap().into(iv);
Glide.with(this).load(imageUrl).asGif().into(iv);
String filePath = "/storage/emulated/0/Pictures/example_video.mp4"; Glide.with(context).load(Uri.fromFile(new File( filePath))).into(iv);
這裏須要注意的是,這僅僅對本地視頻起做用。若是沒有存儲在該設備上的視頻(如一個網絡 URL 的視頻),它是不工做的!markdown
Glide.with(this).load("http://ww4.sinaimg.cn/large/610dc034gw1f96kp6faayj20u00jywg9.jpg") .placeholder(R.drawable.ic_launcher) //設置佔位圖,在加載以前顯示 .into(image);
Glide.with(this).load("http://ww4.sinaimg.cn/large/610dc034gw1f96kp6faayj20u00jywg9.jpg") .placeholder(R.drawable.ic_launcher) //設置佔位圖,在加載以前顯示 .error(R.drawable.icon) //在圖像加載失敗時顯示 .into(image);
//先加載縮略圖 而後在加載全圖 Glide.with(this) .load(imageUrl) .thumbnail(0.1f) .into(iv);
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .crossFade()//動畫默認的持續時間是 300毫秒 .into(iv);
crossFade()
有幾種重載的方法
crossFade(int duration)
:設置時間
crossFade(Animation animation, int duration)
:設置自定義的動畫和時間
crossFade(int animationId, int duration)
: 加載動畫資源和時間
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .animate(R.anim.fade_in) .into(iv);
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .dontAnimate() .into(iv);
Glide.with(this).load(url).centerCrop().into(iv);
Glide.with(this).load(url).fitCenter().into(iv);
Glide.with(this) .load(imageUrl) .listener(RequestListener listener) .into(iv);
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .override(300,300) .into(iv);
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .skipMemoryCache(true) .into(iv);
Glide.with(this) .load("http://nm/photo/1f/1f7a.jpg") .diskCacheStrategy(DiskCacheStrategy.ALL) .into(iv); DiskCacheStrategy.ALL //緩存源資源和轉換後的資源 DiskCacheStrategy.NONE//不作任何磁盤緩存 DiskCacheStrategy.RESULT //緩存轉換後的資源 DiskCacheStrategy.SOURCE //緩存源資源
Glide.get(this).clearDiskCache();//在子線程中進行
Glide.get(this).clearMemory();//能夠在主線程
<!--glide緩存目錄設置--> <meta-data android:name="包名.widget.GlideModuleConfig" android:value="GlideModule" />
public class GlideModuleConfig implements GlideModule { @Override public void applyOptions(Context context, GlideBuilder builder) { //內部存儲/Android/data/包名/cache/glide-images builder.setDiskCache(new ExternalCacheDiskCacheFactory(context, "glide-images", 2 * 1024 * 1024)); //將默認的RGB_565效果轉換到ARGB_8888 builder.setDecodeFormat(DecodeFormat.PREFER_ARGB_8888); } @Override public void registerComponents(Context context, Glide glide) { //不作處理 } }
Glide在Github上還有一個庫,能夠處理圖片效果,好比裁剪、圓角、高斯模糊等等網絡
compile 'jp.wasabeef:glide-transformations:2.0.1'
//radius取值1-25,值越大圖片越模糊 Glide.with(context).load(url).bitmapTransform(new BlurTransformation(context, radius)).into(iv);
Glide.with(context).load(url).bitmapTransform(new CropCircleTransformation(this)).into(iv);
Glide.with(this).load(url).bitmapTransform(new BlurTransformation(this, 25), new CropCircleTransformation(this)).into(iv);
//若是是四周已是圓角則RoundedCornersTransformation.CornerType.ALL Glide.with(this) .load(url) .bitmapTransform(new RoundedCornersTransformation(this, 30, 0, RoundedCornersTransformation.CornerType.BOTTOM)) .into(iv);