本文实例讲述了Android编程获取手机后台运行服务的方法。分享给大家供大家参考,具体如下:
public static String getRunningServicesInfo(Context context) {
StringBuffer serviceInfo = new StringBuffer();
final ActivityManager activityManager = (ActivityManager) context
.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningServiceInfo> services = activityManager.getRunningServices(100);
Iterator<RunningServiceInfo> l = services.iterator();
while (l.hasNext()) {
RunningServiceInfo si = (RunningServiceInfo) l.next();
serviceInfo.append("\npid: ").append(si.pid);
serviceInfo.append("\n\nname:").append(si.service);
serviceInfo.append("\n\nprocess: ").append(si.process);
serviceInfo.append("\n\nservice: ").append(si.service);
serviceInfo.append("\n\ncrashCount: ").append(si.crashCount);
serviceInfo.append("\n\nclientCount: ").append(si.clientCount);
/*serviceInfo.append("\nactiveSince: ").append(ToolHelper.formatData(si.activeSince));
serviceInfo.append("\nlastActivityTime: ").append(ToolHelper.formatData(si.lastActivityTime));*/
serviceInfo.append("\n============================");
serviceInfo.append("\n\n\n");
}
return serviceInfo.toString();
}
希望本文所述对大家Android程序设计有所帮助。
您可能感兴趣的文章:Android判断App前台运行还是后台运行(运行状态)Android开发中实现应用的前后台切换效果Android中使用Service实现后台发送邮件功能实例Android后台定时提醒功能实现Android中Service(后台服务)详解Android后台线程和UI线程通讯实例Android中使用IntentService创建后台服务实例Android App后台服务报告工作状态实例android教程之使用asynctask在后台运行耗时任务Android判断当前应用程序处于前台还是后台的两种方法Android 后台发送邮件示例 (收集应用异常信息+Demo代码)Android 进入设备后台data文件夹的办法解析后台进程对Android性能影响的详解深入解析Android系统中应用程序前后台切换的实现要点