Android implements a method that determines whether a service is running _android

Source: Internet
Author: User

The example in this article describes how the Android implementation determines whether a service is running. Share to everyone for your reference, specific as follows:

 /**
 * The method of determining whether a service is running
 * * 
 @param mcontext
 * @param serviceName
 * is the   package name + The class name of the service (for example: Net.loonggg.testbackstage.TestService)
 * @return True is running, and false indicates that the service is not running/public
Boolean isservicework (Context Mcontext, String serviceName) {
  Boolean iswork = false;
  Activitymanager Myam = (activitymanager) mcontext
      . Getsystemservice (context.activity_service);
  list<runningserviceinfo> myList = Myam.getrunningservices ();
  if (mylist.size () <= 0) {return
    false;
  }
  for (int i = 0; i < mylist.size (); i++) {
    String mname = Mylist.get (i). Service.getclassname (). toString ();
    if (Mname.equals (ServiceName)) {
      iswork = true;
      break;
    }
  }
  return iswork;
}

I hope this article will help you with the Android 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.