-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGlideUtils.java
506 lines (433 loc) · 18.2 KB
/
GlideUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
package com.tpnet.video80s.utils.Glide;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
import android.widget.ImageView;
import com.bumptech.glide.BitmapRequestBuilder;
import com.bumptech.glide.DrawableRequestBuilder;
import com.bumptech.glide.DrawableTypeRequest;
import com.bumptech.glide.GifRequestBuilder;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.load.resource.drawable.GlideDrawable;
import com.bumptech.glide.load.resource.gif.GifDrawable;
import com.bumptech.glide.request.RequestListener;
import com.bumptech.glide.request.animation.GlideAnimation;
import com.bumptech.glide.request.target.SimpleTarget;
import com.bumptech.glide.request.target.Target;
import com.tpnet.video80s.ui.view.CircleImageView;
import com.tpnet.video80s.utils.DensityUtil;
import java.io.File;
/**
* Glide封装类
* Created by litp on 2016/8/6.
* Last Update on 2017.3.22 。 添加注解提醒、返回类型、优化代码
*/
public abstract class GlideUtils {
/**
* 简单图片加载回调
*
* @param <T> 图片url 或资源id 或 文件
* @param <K> 返回的资源,GlideDrawable或者Bitmap或者GifDrawable,ImageView.setImageRecourse设置
*/
public interface ImageLoadListener<T, K> {
/**
* 图片加载成功回调
*
* @param uri 图片url 或资源id 或 文件
* @param view 目标载体,不传则为空
* @param resource 返回的资源,GlideDrawable或者Bitmap或者GifDrawable,ImageView.setImageRecourse设置
*/
void onLoadingComplete(T uri, ImageView view, K resource);
/**
* 图片加载异常返回
*
* @param source 图片地址、File、资源id
* @param e 异常信息
*/
void onLoadingError(T source, Exception e);
}
/**
* 详细加载图片加载回调
*
* @param <T> 图片url 或资源id 或 文件
* @param <K> 返回的资源
*/
public interface ImageLoadDetailListener<T, K> {
/**
* 图片加载成功回调
*
* @param uri 图片url 或资源id 或 文件
* @param view 目标载体,不传则为空
* @param resource 返回的资源,GlideDrawable或者Bitmap或者GifDrawable,ImageView.setImageRecourse设置
*/
void onLoadingComplete(T uri, ImageView view, K resource);
/**
* 图片加载异常返回
*
* @param source 图片地址、File、资源id
* @param errorDrawable 加载错误占位图
* @param e 异常信息
*/
void onLoadingError(T source, Drawable errorDrawable, Exception e);
/**
* 加载开始
*
* @param source 图片来源
* @param placeHolder 开始加载占位图
*/
void onLoadingStart(T source, Drawable placeHolder);
}
/**
* 根据上下文和 url获取 Glide的DrawableTypeRequest
*
* @param context 上下文
* @param url 图片连接
* @param <T> Context类型
* @param <K> url类型
* @return 返回DrawableTypeRequst<K> 类型
*/
private static <T, K> DrawableTypeRequest<K> getDrawableTypeRequest(T context, K url) {
DrawableTypeRequest<K> type = null;
try {
if (context instanceof android.support.v4.app.Fragment) {
type = Glide.with((android.support.v4.app.Fragment) context).load(url);
} else if (context instanceof android.app.Fragment) {
type = Glide.with((android.app.Fragment) context).load(url);
} else if (context instanceof Activity) { //包括FragmentActivity
type = Glide.with((Activity) context).load(url);
} else if (context instanceof Context) {
type = Glide.with((Context) context).load(url);
}
} catch (Exception e) {
e.printStackTrace();
}
return type;
}
/**
* 图片加载监听类
*
* @param <T> 图片链接 的类型
* @param <K> 图片资源返回类型
* @param <Z> 返回的图片url
*/
private static class GlideListener<T, K, Z> implements RequestListener<T, K> {
ImageLoadListener<Z, K> imageLoadListener = null;
Z url;
ImageView imageView = null;
GlideListener(ImageLoadListener<Z, K> imageLoadListener, Z url, ImageView view) {
this.imageLoadListener = imageLoadListener;
this.url = url;
this.imageView = view;
}
GlideListener(ImageLoadListener<Z, K> imageLoadListener, Z url) {
this.imageLoadListener = imageLoadListener;
this.url = url;
}
GlideListener(Z url) {
this.url = url;
}
@Override
public boolean onResourceReady(K resource, T model, Target<K> target, boolean isFromMemoryCache, boolean isFirstResource) {
if (null != imageLoadListener) {
if (imageView != null) {
imageLoadListener.onLoadingComplete(url, imageView, resource);
} else {
imageLoadListener.onLoadingComplete(url, null, resource);
}
}
return false;
}
@Override
public boolean onException(Exception e, T model, Target<K> target, boolean isFirstResource) {
//LogUtil.e("Glide图片加载失败:"+e + " 地址为:"+url);
if (imageLoadListener != null) {
imageLoadListener.onLoadingError(url, e);
}
return false;
}
}
/**
* 获取存储器上的图片,回调返回GlideDrawable
*
* @param context 上下文年
* @param file 文件File
* @param imageLoadListener 回调监听器
*/
public static <T> DrawableRequestBuilder<File> loadImage(T context, @NonNull File file, @NonNull ImageLoadListener<File, GlideDrawable> imageLoadListener) {
DrawableTypeRequest<File> type = getDrawableTypeRequest(context, file);
if (type != null) {
return type.listener(new GlideListener<File, GlideDrawable, File>(imageLoadListener, file));
} else {
return null;
}
}
/**
* 获取资源中的图片,回调返回GlideDrawable
*
* @param context 上下文
* @param resourceId 资源id
* @param imageLoadListener 回调监听器
*/
public static <T> DrawableRequestBuilder<Integer> loadImage(T context, @DrawableRes int resourceId, @NonNull ImageLoadListener<Integer, GlideDrawable> imageLoadListener) {
DrawableTypeRequest<Integer> type = getDrawableTypeRequest(context, resourceId);
if (type != null) {
return type.listener(new GlideListener<Integer, GlideDrawable, Integer>(imageLoadListener, resourceId));
} else {
return null;
}
}
/**
* 获取网络图片,回调返回 GlideDrawable
*
* @param context 上下文
* @param url 图片url
* @param imageLoadListener 回调监听器
*/
public static <T> DrawableRequestBuilder<String> loadImage(T context, @NonNull final String url, @NonNull ImageLoadListener<String, GlideDrawable> imageLoadListener) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(context, url);
if (type != null) {
return type.listener(new GlideListener<String, GlideDrawable, String>(imageLoadListener, url));
} else {
return null;
}
}
/**
* 加载存储器上的图片到目标载体
*
* @param file 文件File
* @param imageView 要显示到的图片ImageView
*/
public static Target<GlideDrawable> loadImage(@NonNull final File file, @NonNull ImageView imageView, ImageLoadListener<File, GlideDrawable> imageLoadListener) {
return getDrawableTypeRequest(imageView.getContext(), file)
.diskCacheStrategy(DiskCacheStrategy.NONE)//禁用磁盘缓存
.skipMemoryCache(true)//跳过内存缓存
.dontAnimate()
.listener(new GlideListener<File, GlideDrawable, File>(imageLoadListener, file, imageView))
.into(imageView);
}
/**
* 加载资源中的图片到目标载体
*
* @param resourceId 资源id
* @param imageView 图片View
*/
public static Target<GlideDrawable> loadImage(@DrawableRes int resourceId, @NonNull ImageView imageView, ImageLoadListener<Integer, GlideDrawable> imageLoadListener) {
return getDrawableTypeRequest(imageView.getContext(), resourceId)
.listener(new GlideListener<Integer, GlideDrawable, Integer>(imageLoadListener, resourceId, imageView))
.into(imageView);
}
/**
* 加载成圆形头像到普通ImageView,有动画效果
*
* @param url 图片url
* @param imageView 要显示到的ImageView
* @param imageLoadListener 加载回调监听器
* @param parms 设置占位符和加载失败图片
* @return 返回Target<GlideDrawable>
*/
public static Target<GlideDrawable> loadCircleImage(@NonNull String url, @NonNull ImageView imageView, ImageLoadListener<String, GlideDrawable> imageLoadListener, int... parms) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(imageView.getContext(), url);
if (parms != null && parms.length > 0) {
type.placeholder(parms[0]); //占位符
if (parms.length > 1) {
type.error(parms[1]); //图片加载失败显示图片
}
}
type.transform(new CircleTransform(imageView.getContext()));
return type.listener(new GlideListener<String, GlideDrawable, String>(imageLoadListener, url, imageView))
.into(imageView);
}
/**
* 加载网络图片到指定Imageview,支持CircleImageView
*
* @param url 图片url
* @param imageView 要显示的Imageview
* @param imageLoadListener 图片加载回调
* @param parms 第一个是error的图片
*/
public static <T> Target<GlideDrawable> loadImage(T context, @NonNull String url, @NonNull ImageView imageView, ImageLoadListener<String, GlideDrawable> imageLoadListener, int... parms) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(context, url);
if (type != null) {
type.asBitmap();
if (parms != null && parms.length > 0) {
type.placeholder(parms[0]); //占位符
if (parms.length > 1) {
type.error(parms[1]); //图片加载失败显示图片
}
}
//单张CircleImageView不允许动画,不然会不显示,
if (imageView instanceof CircleImageView) {
type.dontAnimate();
}
return type
.listener(new GlideListener<String, GlideDrawable, String>(imageLoadListener, url, imageView))
.into(imageView);
} else {
return null;
}
}
/**
* 加载一帧视频,添加圆角
*
* @param url 图片地址
* @param imageView 要加载到的ImageView
*/
public static Target<GlideDrawable> loadImageFormVideo(@NonNull String url, @NonNull ImageView imageView) {
return getDrawableTypeRequest(imageView.getContext(), url)
.override(DensityUtil.dip2px(150), DensityUtil.dip2px(150))
//.placeholder(android.R.drawable.picture_frame) //占位图
.dontAnimate()
.into(imageView);
}
public static <T> Target<GlideDrawable> loadImageDetail(final T context, @NonNull final String url, @NonNull final ImageView imageView, final Drawable drawable, final ImageLoadDetailListener<String, GlideDrawable> imageLoadListener) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(context, url);
if (type != null) {
return type.into(new SimpleTarget<GlideDrawable>() {
@Override
public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
if (imageView != null && resource != null) {
imageView.setImageDrawable(resource);
}
if (imageLoadListener != null) {
imageLoadListener.onLoadingComplete(url, imageView, resource);
}
}
@Override
public void onStart() {
super.onStart();
if (drawable != null && imageView != null) {
imageView.setImageDrawable(drawable);
}
}
@Override
public void onLoadStarted(Drawable placeholder) {
super.onLoadStarted(placeholder);
if (imageLoadListener != null) {
imageLoadListener.onLoadingStart(url, placeholder);
}
}
@Override
public void onLoadFailed(Exception e, Drawable errorDrawable) {
super.onLoadFailed(e, errorDrawable);
if (imageLoadListener != null) {
imageLoadListener.onLoadingError(url, errorDrawable, e);
}
}
});
} else {
return null;
}
}
/**
* 加载bitmap,回调返回 Bitmap
*
* @param context 上下文
* @param url 图片url
* @param imageLoadListener 图片加载监听器
* @param <T> 上下文类型
*/
public static <T> BitmapRequestBuilder<String, Bitmap> loadImageBitmap(T context, @NonNull String url,@NonNull ImageLoadListener<String, Bitmap> imageLoadListener) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(context, url);
if (type != null) {
return type.asBitmap()
.listener(new GlideListener<String, Bitmap, String>(imageLoadListener, url));
}else{
return null;
}
}
/**
* 加载GifDrawable,回调返回 GifDrawable
*
* @param context 上下文
* @param url 图片url
* @param imageLoadListener 图片加载监听器
*/
public static <T> GifRequestBuilder<String> loadImageGif(T context, @NonNull String url,@NonNull ImageLoadListener<String, GifDrawable> imageLoadListener) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(context, url);
if (type != null) {
return type.asGif()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.listener(new GlideListener<String, GifDrawable, String>(imageLoadListener, url));
}else{
return null;
}
}
/**
* 加载Gif的一张图片到ImageView
*
* @param url 图片url
* @param imageLoadListener 图片加载监听器
* @param imageView
* @param drawable 缩略图,可以为空
*/
public static Target<Bitmap> loadImageGifSingle(@NonNull String url, @NonNull ImageView imageView, ImageLoadListener<String, Bitmap> imageLoadListener, Drawable drawable) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(imageView.getContext(),url);
return type.asBitmap()
.placeholder(drawable)
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.listener(new GlideListener<String, Bitmap, String>(imageLoadListener, url))
.into(imageView);
}
/**
* 加载gif图片到指定ImageView
*
* @param url 图片Url
* @param imageView 图片View
* @param imageLoadListener 图片加载监听器
*/
public static Target<GifDrawable> loadImageGif(@NonNull String url, @NonNull ImageView imageView, ImageLoadListener<String, GifDrawable> imageLoadListener) {
DrawableTypeRequest<String> type = getDrawableTypeRequest(imageView.getContext(),url);
return type.asGif()
.diskCacheStrategy(DiskCacheStrategy.SOURCE)
.listener(new GlideListener<String, GifDrawable, String>(imageLoadListener, url, imageView))
.into(imageView);
}
/**
* 释放内存
*
* @param context 上下文
*/
public static void clearMemory(Context context) {
Glide.get(context).clearMemory();
}
/**
* 取消所有正在下载或等待下载的任务。
*
* @param context 上下文
*/
public static void cancelAllTasks(Context context) {
Glide.with(context).pauseRequests();
}
/**
* 恢复所有任务
*/
public static void resumeAllTasks(Context context) {
Glide.with(context).resumeRequests();
}
/**
* 清除磁盘缓存
*
* @param context 上下文
*/
public static void clearDiskCache(final Context context) {
new Thread(new Runnable() {
@Override
public void run() {
Glide.get(context).clearDiskCache();
}
}).start();
}
/**
* 清除所有缓存
*
* @param context 上下文
*/
public static void cleanAll(Context context) {
clearDiskCache(context);
clearMemory(context);
}
}