我的 android 应用程序中的 onSaveInstanceState 方法有问题。我已经连接了两个 SQL 数据库,RemindersDbAdapter 和 ImageAdapter。
因此,我在我的主要活动中结束了这个:
private Long mRowId;
private Long mImageRowId;
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putLong(RemindersDbAdapter.KEY_ROWID, mRowId);
outState.putLong(ImageAdapter.KEY_ROWID, mImageRowId);
}
问题是这段代码崩溃了。有人可以给我一个提示来解决这个问题吗?