How is it possible to go back to the last Activity
one has been in from a Fragment
? Let's assume we've Activity
A and Fragment
A. I launch Fragment
A from Activity
A, and now I want to go back to Fragment
A. When I press on the back button on my phone it closes the app.
I launch the fragment by using the FragmentManager
:
Fragment fragment = new Kontakt();
getFragmentManager().beginTransaction()
.add(R.id.kontaktfrag, fragment)
.commit();
Is the solution; popBackStackImmediate()
or addToBackStack()
?