Implement Android and press exit program code again

Source: Internet
Author: User

 

Private long exittime = 0;
	
/**
 * Capture Return Event button
 * 
 * For this activity to inherit tabactivity with OnKeyDown no response, so instead
 of dispatchkeyevent * General activity Onke Ydown on it.
 * *

@Override public
boolean dispatchkeyevent (KeyEvent event) {
  if (event.getkeycode () = = Keyevent.keycode_back) {
    if (event.getaction () = = Keyevent.action_down && event.getrepeatcount () = 0) { C13/>this.exitapp ();
    }
    return true;
  }
  Return Super.dispatchkeyevent (event);
}

/**
 * Exit program
 /
private void Exitapp () {
  //Judge 2 Click event Time
  if (System.currenttimemillis ()- Exittime) >) {
    toast.maketext (mainactivity.this, "Click again to exit the program", Toast.length_short). Show ();
    Exittime = System.currenttimemillis ();
  } else {
    finish ();
  }
}
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.