Android Clicks Twice to exit the program

Source: Internet
Author: User

Click the program twice in a row to exit the program. This is an interesting program function. Let's introduce my implementation method (You are welcome to give some suggestions ):
1. Set a long global variable firstTime = 0 in the Activity to record the time of the first press (unit: milliseconds );
2. Response to the onKeyUp event of the Activity:

@ Override
Public boolean onKeyUp (int keyCode, KeyEvent event ){
If (keyCode = KeyEvent. KEYCODE_BACK ){
Long secondTime = System. currentTimeMillis ();
If (secondTime-firstTime> 800) {// if the interval between two buttons is greater than 800 milliseconds, do not exit
Toast. makeText (MainActivity. this, "exit the program again ...",
Toast. LENGTH_SHORT). show ();
FirstTime = secondTime; // update firstTime
Return true;
} Else {
System. exit (0); // otherwise exit the program
}
}
Return super. onKeyUp (keyCode, event );
}
OK!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.