Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can I clear only a variable number of activities from the activity stack?

Lets say I want to clear 3 activities, I won't use android:noHistory in the manifest, I won't use a method to clear the whole stack

and maybe I could call finish(); finish(); finish(); under a certain condition, but that doesn't seem right.

is there a known method to do this?

share|improve this question

2 Answers

up vote 1 down vote accepted

You could register a BroadcastReceiver in the classes you want to finish, then send the broadcast when you want to finish them.

share|improve this answer
I was thinking that too – CQM Jun 4 '12 at 19:06

Messy, but you can use getParent(). eg:

this.getParent().getparent().finish(); 
this.getParent().finish(); 
this.finish();

And if you wanted to do this to x number of activities, you could use a loop and a variable to trace back x number of parents.

share|improve this answer
This can work, messing around with the way intents were launched in certain scenarios was the better option – CQM Jun 27 '12 at 2:08

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.