在滑行中处理IllegalArgumentException(“你无法为被破坏的活动开始加载”)的最佳方法是什么?

时间:2016-06-07 10:27:46

标签: java android android-glide

我的应用程序有时会崩溃,日志中出现的异常是:

llegalArgumentException("You cannot start a load for a destroyed activity")

鉴于我不希望我的应用程序崩溃,可能的解决方法是什么? 我应该修改库代码还是捕获异常 在图书馆(RequestManagerRetriever.java)中:

@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
private static void assertNotDestroyed(Activity activity) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1 && activity.isDestroyed()) {
        throw new IllegalArgumentException("You cannot start a load for a destroyed activity");
    }
}

1 个答案:

答案 0 :(得分:0)

解决方法是不要为已销毁的活动启动加载"。