Created
November 24, 2014 07:07
-
-
Save msomu/fcd553300b40066e3424 to your computer and use it in GitHub Desktop.
Back button double press
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static long back_pressed; | |
| @Override | |
| public void onBackPressed() | |
| { | |
| if (back_pressed + 2000 > System.currentTimeMillis()) super.onBackPressed(); | |
| else Toast.makeText(getBaseContext(), "Press once again to exit!", Toast.LENGTH_SHORT).show(); | |
| back_pressed = System.currentTimeMillis(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment