当activity由不可见变成可以用户用交互了,依次调用了哪些方法?
A: onStart()、onRestart()
B: onStart()、onRestart()、onResume()
C: onResume()、onStart()
D: onRestart()、onStart()、onResume()
A: onStart()、onRestart()
B: onStart()、onRestart()、onResume()
C: onResume()、onStart()
D: onRestart()、onStart()、onResume()
举一反三
- Activity生命周期最开始的方法调用顺序是()。 A.onCreate(),onResume(),onStart() B.onCreate(),onRestart(),onResume() C.onStart(),onResume(),onCreate() D.onCreate(),onStart(),onResume()
- 在一个activity A中启动了activity B,并完全覆盖A的界面,这时候按回退键再从B返回到A,那么A在回退过程中调用了它的哪些生命周期方法() A: onResume B: onRestart,onStart,onResume C: onStart,onResume D: onRestart,onResume
- 首次打开APP,调用Activity的生命周期方法有 A: onCreate B: onStart C: onRestart D: onResume
- 打开Activity的界面时会执行( )、( )、( )方法。 A: onCreate() B: onStart() C: onResume() D: onRestart()
- 在下列选项中,重新打开最小化的Activity界面时执行的方法是( )。 A: onCreate、onStart B: OnPause、 onDestroy C: onRestart、onResume D: onRestart、onStart