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.
onDestroy();上記の問題が発生したアクティビティにOverrideメソッドを追加し、メソッドを呼び出しsuper.onDestroy();ます。この場合、開始したばかりのアクティビティに戻るボタンを押すと、ライフサイクルの維持が終了します。以下のように:
onDestroy();
super.onDestroy();
@Override public void onDestroy(){ super.onDestroy(); }
この助けを願っています