Glide错误java.lang.IllegalArgumentException: You cannot start a load for a destroyed activity

出现这个问题的代码:

     Glide.with(mContext)
                                            .load(url)
                                            .placeholder(R.drawable.zheng)
                                            .fitCenter()
                                            .into(img_sfz_zheng);

解决后的代码:

     Glide.with(mainApplication)
                                            .load(url)
                                            .placeholder(R.drawable.zheng)
                                            .fitCenter()
                                            .into(img_sfz_zheng);

其中,mainApplication是Application的对象,mContext是Activity的Context对象。

你可能感兴趣的:(android)