Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -362,7 +362,7 @@ exitDialogListener | 退出结果回调监听,需实现 onDialogResult 方法 | ... | @@ -362,7 +362,7 @@ exitDialogListener | 退出结果回调监听,需实现 onDialogResult 方法 |
362 | return super.dispatchKeyEvent(pKeyEvent); | 362 | return super.dispatchKeyEvent(pKeyEvent); |
363 | } | 363 | } |
364 | 2.10、Android 生命周期接口(必接) | 364 | 2.10、Android 生命周期接口(必接) |
365 | - 说明:在游戏 Activity 的 onStart、onPause、onResume、 onStop、onDestroy、onRestart、onNewIntent、 onActivityResult、onConfigurationChanged 中分别调用对应的接口 | 365 | + 说明:在游戏 Activity 的 onStart、onPause、onResume、 onStop、onDestroy、onRestart、onNewIntent、 onActivityResult、onConfigurationChanged、onSaveInstanceState、onRestoreInstanceState、onWindowFocusChanged、onWindowAttributesChanged 中分别调用对应的接口 |
366 | 2.10.1、代码示例 | 366 | 2.10.1、代码示例 |
367 | @Override | 367 | @Override |
368 | public void onStart() { | 368 | public void onStart() { | ... | ... |
-
Please register or login to post a comment