Android clicks the Back key twice in a row to exit the program.

Source: Internet
Author: User

Train of Thought: record the time of the last click. Compared with the time of this click, exit when the two time intervals are less than a certain value; otherwise, the system prompts "exit the program again ", update the last click time at the same time

 

Private long firstTime = 0; @ Override public boolean onKeyUp (int keyCode, KeyEvent event) {// TODO Auto-generated method stub switch (keyCode) {case KeyEvent. KEYCODE_BACK: long secondTime = System. currentTimeMillis (); if (secondTime-firstTime> 2000) {// if the interval between two buttons is greater than 2 seconds, do not exit Toast. makeText (this, "exit the program again", Toast. LENGTH_SHORT ). show (); firstTime = secondTime; // update firstTime return true;} when the else {// two buttons are less than 2 seconds, exit the application System. exit (0);} break;} return super. onKeyUp (keyCode, event );}

 

Related Article

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.