这个报错一般是由于调用了已经销毁的Activity导致的,可以通过以下方法进行解决:
if(!this.isFinishing()){ startActivity(intent); }
@Override protected void onDestroy() { super.onDestroy(); this.activity = null; }
Bundle bundle = new Bundle(); bundle.putInt("key", value); intent.putExtras(bundle);
通过以上方法,这个报错一般可以得到解决。