android.app.SuperNotCalledException: Activity {} did not call through to super.onDestory()

来源:互联网 发布:js href blank 编辑:程序博客网 时间:2024/05/21 09:36

从错误信息上可以明显查看到在onDestory()方法抛出异常,不能够通过ondestory方法。

 @Override    protected void onDestroy() {        stopThread = true;    }
其实就是没有调用super.ondestory()原因;

@Override    protected void onDestroy() {        super.onDestroy();        stopThread = true;    }




阅读全文
0 0
原创粉丝点击