首页 > 移动平台 > 详细

【安卓笔记】检测服务是否运行

时间:2014-07-23 13:38:06      阅读:298      评论:0      收藏:0      [点我收藏+]
/**
	 * 判断服务是否后台运行
	 * 
	 * @param context
	 *            Context
	 * @param className
	 *            判断的服务名字
	 * @return true 在运行 false 不在运行
	 */
	public static boolean isServiceRun(Context mContext, String className) {
		boolean isRun = false;
		ActivityManager activityManager = (ActivityManager) mContext
				.getSystemService(Context.ACTIVITY_SERVICE);
		List<ActivityManager.RunningServiceInfo> serviceList = activityManager
				.getRunningServices(40);
		int size = serviceList.size();
		for (int i = 0; i < size; i++) {
			if (serviceList.get(i).service.getClassName().equals(className) == true) {
				isRun = true;
				break;
			}
		}
		return isRun;
	}
需要注意的是classname必须为一个服务的完整名称,即包名.类名

【安卓笔记】检测服务是否运行,布布扣,bubuko.com

【安卓笔记】检测服务是否运行

原文:http://blog.csdn.net/chdjj/article/details/38053421

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!