给一段获取正在运行的后台service的代码,如下:
- //RunningServicesInfo
- ? ? ? ? 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("pid: ").append(si.pid);
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\nprocess: ").append(si.process);
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\nservice: ").append(si.service);
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\ncrashCount: ").append(si.crashCount);
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\nclientCount: ").append(si.clientCount);
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\nactiveSince: ").append(ToolHelper.formatData(si.activeSince));
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\nlastActivityTime: ").append(ToolHelper.formatData(si.lastActivityTime));
- ? ? ? ? ? ? ? ? ? ? ? ? serviceInfo.append("\n\n");
- ? ? ? ? ? ? ? ? }
- ? ? ? ? ? ? ? ? return serviceInfo.toString();
- ? ? ? ? }
1 楼 z小强g 2012-03-23
你好,如何获取后台正在运行的服务呢?不是服务的信息。
比如我界面要根据后台运行进行更新。当Activity被destroy之后,新Activity如何获取Service的运行情况呢。
比如我界面要根据后台运行进行更新。当Activity被destroy之后,新Activity如何获取Service的运行情况呢。