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.

In My application I want to apply logout functionality. For that I placed a menu item for Logout. If Logout is pressed . I called the LoginActivity.

Intent login=new Intent(getApplicationContext(),LoginActivity.class);
      login.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                  startActivity(login);

But the problem is , In My application i called lot of activity as StartActivityForResult(). All these activities are still in backstack. How can i remove all these activities (StartActivityForResult) from backstack.

When I run in my andriod device , I am not facing this problem. But while running in my emulator i face this problem

Thanks, Sridhar.

share|improve this question
also I write android:noHistory=true in Manifest xml – Sridhar Sep 13 '12 at 7:22
What for do you use those Activities? Starting an Activity for result means you open it just to get a result out of it, then it should be finished. Probably you should redesign your application. – Egor Sep 13 '12 at 7:22
For eg, take SelectItemActivity. I called it as StartActivityforResult. this activity for multi selection of items – Sridhar Sep 13 '12 at 7:24
and return the selected ids – Sridhar Sep 13 '12 at 7:25
2  
So you should call finish() on this Activity after you call setResult(), then you'll go back to the originating Activity and the SelectItemActivity will be destroyed. – Egor Sep 13 '12 at 7:27
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.