/**
	    * 用来判断服务是否运行.
	    * @param context
	    * @param className 判断的服务名字
	    * @return true 在运行 false 不在运行
	    */
	   public static boolean isServiceRunning(Context mContext,String className) {
	       boolean 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;
	   }

相关文章:

  • 2021-09-21
  • 2021-08-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2021-08-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案