ActivityManager.getRecentTasks()返回0结果

时间:2011-10-01 05:45:02

标签: android

更新我在1.6 AVD和真正的Droid Incredible上试过这个。两者都有同样的问题。

我需要获取最近任务的列表,但ActivityManager.getRecentTasks()总是返回0结果,无法找出原因。

ActivityManager result = (ActivityManager)context.getSystemService(Context.ACTIVITY_SERVICE);
ArrayList<RecentTaskInfo> apps = (ArrayList<RecentTaskInfo>) result.getRecentTasks(10, ActivityManager.RECENT_WITH_EXCLUDED);

我在清单中设置了android.permission.GET_TASKS,但apps始终为0。

任何人都有洞察力的原因?我很难过。

1 个答案:

答案 0 :(得分:0)

显然,我需要清理项目。一旦我清理了项目,就可以了。