本文介绍了何时在Android中调用onRestart方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
虽然我们拥有onStart方法,但是onRestart方法的目的是什么?
While we are having onStart method, what is the purpose of onRestart method?
@Override
protected void onStart() {
super.onStart();
}
@Override
protected void onRestart() {
super.onRestart();
}
推荐答案
以下是活动生命周期,其中包含您的onStart()
和onRestart()
方法及其说明
Here is the activity lifecycle there is your onStart()
and onRestart()
methods with explanations
更多信息此处
这篇关于何时在Android中调用onRestart方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!