我是靠谱客的博主 淡淡金毛,最近开发中收集的这篇文章主要介绍java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
原因分析
出现这个错误是因为我们还在使用Glide加载图片,但是当前显示图片的view所在的activity却已经被销毁了。
解决办法
一个非常简单的办法就是,使用Glide加载图片的时候,判断传入进来的Context是否已经被销毁(或者直接判断Context是否为空或者直接传入Application,只不过传入Application加载图片会跟随应用的生命周期而终止,这样不太优雅)。
public static void loadCircleImage3(Context context,String imgUrl, ImageView imageView) {
if (!TextUtils.isEmpty(imgUrl) && context != null && imageView != null && imageView.getContext() != null) {
Glide.with(context).load(imgUrl).diskCacheStrategy(DiskCacheStrategy.RESULT).transform(new GlideCircleTransform(context)).into(imageView);
}
}
最后
以上就是淡淡金毛为你收集整理的java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity的全部内容,希望文章能够帮你解决java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复