Glide错误java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity
Posted 星辰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Glide错误java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity相关的知识,希望对你有一定的参考价值。
解决办法 在使用Glide的那段代码加是否在主线程判断
if(Util.isOnMainThread())
{ Glide.with(ClassifyItemDetailActivity.this).load(ConstantsYiBaiSong.CLASSIFY_LIST_ITEM_DETAIL_IMAGE + lists.get(i).get( "face")) .diskCacheStrategy(DiskCacheStrategy.ALL).into(imageView); }
在onDestory加
@Override protected void onDestroy() { super.onDestroy(); Glide.with(this).pauseRequest(); }
子线程所有的this 都要写成getApplicationContext //这个主要针对于在子线程使用Glide
以上是关于Glide错误java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity的主要内容,如果未能解决你的问题,请参考以下文章
0713-6.2.0-HBase的Thrift Server启动问题
请求 io.undertow.servlet.spec.HttpServletRequestImpl 不是原始的或包装器