Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将 Override 方法添加onDestroy();到存在上述问题的活动中并在其中调用super.onDestroy();方法,在这种情况下,当您按下返回按钮到刚刚启动的活动时,它将完成维护其生命周期,只需执行如下:
onDestroy();
super.onDestroy();
@Override public void onDestroy(){ super.onDestroy(); }
希望这有帮助