Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to hide my android app from (and only from) the menu that appears when long holding the HOME-button after it is finished. Is there a way to do that? Calling finish() programatically dont do the trick.

There are many threads about hiding an app from the launcher and taskmanager, but this is not what I want, I simply dont want it to show up in this "app history".

best regards Sebastian

share|improve this question

1 Answer

Add android:excludeFromRecents="true" to any <activity> element in the manifest for any activity that should not appear in the recent tasks list.

share|improve this answer
Great, worked well. Thank you. – Sebastian Mar 10 '12 at 22:07
Used this solution to avoid user from re-entering a from-notification-only activity. Seems to be the only thing doing the trick, thanks! – gardarh Jul 2 '12 at 23:21
@commonsware: How to clear recents list while long-pressing home button ? – Ramesh Akula Jan 23 at 16:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.