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.
私はAndroidを初めて使用するので、しばらくお待ちください。
新しいアクティビティを開始すると、デフォルトでは、デバイスの[戻る]ボタンをクリックすると前のアクティビティに戻るはずです。 私の場合、前のアクティビティに戻る前に、戻るボタンを2回押す必要があります。
お知らせ下さい
private int count = 0; @Override public void onBackPressed() { count++; if (count == 2) { //Do your stuff here count = 0; } }