Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
298 views
in Technique[技术] by (71.8m points)

android - Clear all recent tasks Programmatically

I am trying to remove all recent tasks through a program. Before posting a question, I googled it, but no luck at all.

I tried to use ActivityManager.killBackgroundProcess(pckagename), but it also does not remove the task from a recent task list.

I also tried the link Android, how to clear the recent task list which could get from Home button in most phone? Reflection is a possible way?

I always get the following exception

java.lang.SecurityException: Permission Denial: removeTask() from pid=23297, uid=10051 requires android.permission.REMOVE_TASKS

Even if I already specified the android.permission.REMOVE_TASKS permission in the manifest.

How can we clear the list of recent tasks programmatically, so that the user can see no recent tasks in a recent task list?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

REMOVE_TASKS is a signature-level permission. It can only be held by apps written by the developers of the device firmware, such as a device manufacturer or ROM mod author.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...