Re: [android-developers] Fragments /Compatibility API Backstack Clearing Problem

2014-07-02 Thread m3n0R
Same here... Is there any good way to do that? El jueves, 3 de noviembre de 2011 08:10:21 UTC+1, Alexey Zakharov escribió: Even with POP_BACK_STACK_INCLUSIVE onResume of popped Fragment is called. You need to add alternative method that will allow remove element from back stack without

Re: [android-developers] Fragments /Compatibility API Backstack Clearing Problem

2011-11-03 Thread Alexey Zakharov
Even with POP_BACK_STACK_INCLUSIVE onResume of popped Fragment is called. You need to add alternative method that will allow remove element from back stack without resuming it. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Fragments /Compatibility API Backstack Clearing Problem

2011-03-28 Thread Josh L
All, I am rewriting an existing application to use the Fragments/Android Compatibility API so that we can more easily add custom Tablet layouts and I have come across a problem that I'm not sure how to solve. The application has a custom tab-like control across the bottom which represent

Re: [android-developers] Fragments /Compatibility API Backstack Clearing Problem

2011-03-28 Thread Dianne Hackborn
You can use do this a few ways: - Use a name for your initial back stack state and use FragmentManager.popBackStack(String name, FragmentManager.POP_BACK_STACK_INCLUSIVE). - Use FragmentManager.getBackStackEntryCount()/getBackStackEntryAt().getId() to retrieve the ID of the first entry on the