Created
May 12, 2013 16:05
-
-
Save mcatta/5564025 to your computer and use it in GitHub Desktop.
Override backPress android
This file contains 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
@Override | |
public void onBackPressed() { | |
if(close_count==1) { | |
Toast.makeText(getApplicationContext(), "Press back again to close application...", Toast.LENGTH_SHORT).show(); | |
close_count--; | |
return; | |
} | |
super.onBackPressed(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment