为了账号安全,请及时绑定邮箱和手机立即绑定

onRestoreInstanceState(Parcelable state)中的return具体是什么作用呢

protected void onRestoreInstanceState(Parcelable state) {
   if (state instanceof Bundle){
       Bundle bundle = (Bundle) state;
       isGrameOver = bundle.getBoolean(INSTANCE_GAMEOVR);
       mWhiteArray = bundle.getParcelableArrayList(INSTANCE_WHITE_ARRAY);
       mBlackArray = bundle.getParcelableArrayList(INSTANCE_BLACK_ARRAY);
       super.onRestoreInstanceState(bundle.getParcelable(INSTANCE));
       return;
   }
   super.onRestoreInstanceState(state);
}

正在回答

1 回答

提前结束onRestoreInstanceState函数,


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android-五子连珠
  • 参与学习       39006    人
  • 解答问题       166    个

Android游戏开发-五子连珠,本教程通过UI与逻辑实现双人对战

进入课程

onRestoreInstanceState(Parcelable state)中的return具体是什么作用呢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信