当前位置:操作系统 > 安卓/Android >>

android判断某服务是否正在后台运行

 /**
        * 用来判断服务是否后台运行
        * @param context
        * @param className 判断的服务名字
        * @return true 在运行 false 不在运行
        */
       public static boolean isServiceRunning(Context mContext,String className) {
           booleanV IsRunning = false;
           ActivityManager activityManager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE); 
           List<ActivityManager.RunningServiceInfo> serviceList   = activityManager.getRunningServices(30);
          if (!(serviceList.size()>0)) {
               return false;
           }
           for (int i=0; i<serviceList.size(); i++) {
               if (serviceList.get(i).service.getClassName().equals(className) == true) {
                   IsRunning = true;
                   break;
               }
           }
           return IsRunning ;
       }

补充:移动开发 , Android ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,