首页 > 网站 > 建站经验 > 正文

A-ndroid中查看服务是否开启的工具类

2019-11-02 14:49:56
字体:
来源:转载
供稿:网友

 这个也是昨天学习的,做下总结。

检查服务是否开启要写成一个工具类,方便使用,传服务的名字返回Boolean值,当然,因为需要,还要传一个上下文context。

说一下这个工具类的几个关键点:

1.方法要传context和serviceName,context用来getSystemService()操作获得ActivityManager。注意,这个方法参数要用大写的Context中的参数:Context.ACTIVITY_SERVICE,要不然会出错,还不知道哪错的,花了我10分钟的时间才知道,谨记下。

2.ActivityManager实例可以getRunningService()方法,参数是获得服务最大数目,一般100就好。

3.上面的方法返回的事一个List,要对他进行遍历,获的每一个服务的名字,在比较,返回结果。

 

下面是具体代码。

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 import java.util.List;   import android.app.ActivityManager; import android.app.ActivityManager.RunningServiceInfo; import android.app.Service; import android.content.Context;   public class ServiceStateUtiles {           public static Boolean isServiceRunning(Context context, String serviceName) {         //获取服务方法  参数 必须用大写的Context!!!         ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);         List<runningserviceinfo> infos = am.getRunningServices(100);         for (RunningServiceInfo info : infos) {             String className = info.service.getClassName();             if(serviceName.equals(className))                 return true;         }         return false;     } }</runningserviceinfo>
66影视网[www.aikan.tv/special/66yingshiwang/]
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表