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.
MainActivity の [戻る] ボタンを押したときにアプリを閉じたい。現在、MainActivity で押すと、前のアクティビティに戻ります。
System.exit(0) を使用できます。
@Override public void onBackPressed() { System.exit(0); }
@Override public void onBackPressed() { YourActivity.this.finish(); }
デフォルトの動作を変更することはお勧めできません。