Double tap to exit xamarin android
private bool doubleBackToExitPressedOnce = false; | |
public override void OnBackPressed() | |
{ | |
if (doubleBackToExitPressedOnce) | |
{ | |
base.OnBackPressed(); | |
Java.Lang.JavaSystem.Exit(0); | |
return; | |
} | |
this.doubleBackToExitPressedOnce = true; | |
Toast.MakeText(this, "Double tap to exit", ToastLength.Short).Show(); | |
new Handler().PostDelayed(() => | |
{ | |
doubleBackToExitPressedOnce = false; | |
}, 2000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment