Android Development "Press and Exit program" implementation

Source: Internet
Author: User

Now that the Mobile Client Exit Program dialog box exits is becoming more and more out of fashion, all started using a continuous press two times to exit, that is, the famous "Press again exit program" mode. Let's see how it's going to come true.

@SuppressLint ("Handlerleak") Handler Handler=NewHandler () { Public voidhandlemessage (Message msg) {Switch(Msg.what) {}}}; BooleanWillexit =false; @Override Public voidonbackpressed () {//TODO auto-generated Method StubRunnable Resetflag=NewRunnable () {@Override Public voidrun () {//TODO auto-generated Method StubWillexit =false;                }        }; if(!willexit) {Toast.maketext ( This, "Press again to exit the program", Toast.length_short). Show (); Willexit=true; Handler.postdelayed (Resetflag,2*1000); }Else{handler.removecallbacks (Resetflag);        Finish (); }    }

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.