Background running of the Android implementation program

Source: Internet
Author: User

Tag:android    background    onkeydown   

</pre><pre name= "code" class= "java" >/** * Overwrite the return key event listener, so that the back key function is similar to the home key, so that acitivty back to the background without being destroyed by the system */@ Overridepublic boolean onKeyDown (int keycode, keyevent event) {Packagemanager pm = Getpackagemanager (); ResolveInfo homeinfo = pm.resolveactivity (new Intent (Intent.action_main). Addcategory (Intent.category_home), 0); if ( KeyCode = = keyevent.keycode_back) {Activityinfo ai = homeinfo.activityinfo;intent startintent = new Intent (Intent.ACTION _main); startintent.addcategory (Intent.category_launcher); Startintent.setcomponent (New ComponentName ( Ai.packagename, Ai.name)); startactivitysafely (startintent); return true;} Elsereturn Super.onkeydown (KeyCode, event);} private void startactivitysafely (Intent Intent) {intent.addflags (intent.flag_activity_new_task); try {startactivity ( Intent);} catch (Activitynotfoundexception e) {Toast.maketext (this, "null", Toast.length_short). Show ();} catch ( SecurityException e) {Toast.maketext (this, "null", Toast.length_short). Show ();}}


Background running of the Android implementation program

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.