Whether the Android detection service is running

Source: Internet
Author: User

Directly on the code:

/*** Determine if the service is running in the background * *@paramContext * Context *@paramClassName * The service name of the judgment *@returnTrue when running false is not running*/     Public Static BooleanIsservicerun (Context mcontext, String className) {BooleanIsrun =false; Activitymanager Activitymanager=(Activitymanager) mcontext. Getsystemservice (Context.activity_service); List<ActivityManager.RunningServiceInfo> servicelist =Activitymanager. Getrunningservices (40); intSize =servicelist.size ();  for(inti = 0; i < size; i++) {            if(Servicelist.get (i). Service.getclassname (). Equals (className) = =true) {Isrun=true;  Break; }        }        returnIsrun; }

Using code:

   boolean isrun = Isservicerun (Getapplicationcontext (), "com.baidu.location.f");

Note: COM.BAIDU.LOCATION.F is the full class name for the service.

http://blog.csdn.net/android_ls/article/details/8606014

Whether the Android detection service is running

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.