/**
* 检测Service是否正在运行
*
* @param context
* @return true 为正在运行 false为没有运行
*/
public static boolean isServiceRunning(Context context) {
ActivityManager manager = (ActivityManager) context
.getSystemService(Context.ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
// Log.e("系统开启的服务", service.service.getClassName());
if ("包名.服务名".equals(service.service.getClassName())) {
return true;
}
if ("包名.服务名".equals(service.service.getClassName())) {
return true;
}
}
return false;
}
http://www.2cto.com/kf/201307/225538.html