I have the following workflow in my application:
Activity 1 (a ListView) -> Activity 2 (a ListView which loads Fragments) -> Fragment 1 -> Fragment 2.
It all worked out beautifully, I could go forward to Fragment 2, then press the Back button to traverse backwards each step.
At some point I needed to add an ActionBar. Due to some weird programming on behalf of google, I have to extend ActionBarActivity which imports android.support.v7.app.ActionBarActivity, which requires me to change all my Fragment managers to 'support' which import android.support.v4.app.FragmentManager.
The result, is that I have an ActionBar through out my workflow, but I can only go forward to Fragment 2. Any press of the Back button, results in Activity 1 appearing, there is no BackStack.
So, is having Actions/Fragments with an ActionBar and a BackStack impossible, or is my BackStack broken for another reason?
Any help would be appreciated.
Thank you!