Skip to content
Snippets Groups Projects
Commit 7261d3a5 authored by Andreas Schildbach's avatar Andreas Schildbach
Browse files

AppListFragment: Fix back button in AppDetailFragment not tracking back to AppListFragment.

parent 31166e45
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,7 @@ class AppListFragment : Fragment() { ...@@ -69,6 +69,7 @@ class AppListFragment : Fragment() {
val fragmentManager = activity?.supportFragmentManager ?: throw IllegalStateException() val fragmentManager = activity?.supportFragmentManager ?: throw IllegalStateException()
fragmentManager.beginTransaction() fragmentManager.beginTransaction()
.replace(R.id.fragment_container, fragment) .replace(R.id.fragment_container, fragment)
.addToBackStack(null)
.commit() .commit()
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment