Skip to content

Instantly share code, notes, and snippets.

@msomu
Created November 24, 2014 07:07
Show Gist options
  • Select an option

  • Save msomu/fcd553300b40066e3424 to your computer and use it in GitHub Desktop.

Select an option

Save msomu/fcd553300b40066e3424 to your computer and use it in GitHub Desktop.
Back button double press
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