码迷,mamicode.com
首页 > 移动开发 > 详细

Android 中 判断给出的service是否是在运行中

时间:2014-09-17 15:05:02      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:android   for   cti   on   c   size   r   as   text   

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)) {
isRunning = true;
break;
}
}
return isRunning;
}

Android 中 判断给出的service是否是在运行中

标签:android   for   cti   on   c   size   r   as   text   

原文地址:http://www.cnblogs.com/mxyhws/p/3976997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!