How the Android implementation closes all activity when it exits _android

Source: Internet
Author: User

This example implements the ability to turn off all activity when Android exits and share them for your reference. The specific methods are as follows:

In general, when Android exits, some activity may not be closed. To turn off all activity when Android exits, here are the following classes:

Class public class
closeactivityclass{public 
 
  static list<activity> activitylist = new for closing an activity Arraylist<activity> ();
 
  public static void Exitclient (context ctx)
  {
   //Close all activity for
   (int i = 0; i < activitylist.size (); i++) c7/>{
     if (null!= activitylist.get (i))
     {
       activitylist.get (i). Finish ();
     }
   Activitymanager activitymgr = (activitymanager) ctx.getsystemservice (context.activity_service);
   Activitymgr.restartpackage (Ctx.getpackagename ());
   System.exit (0);
  }
}

Then add one sentence to the OnCreate (Bundle savedinstancestate) method of each activity in the application:

CloseActivityClass.activityList.add (this);

When the application exits:

Closeactivityclass.exitclient (Mainactivity.this);

This allows all activity of the application to be completely shut down when the application is exited.

It is believed that this article has certain reference value to everyone's Android program design.

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.