I am building a tablet app. In this app there is one activity with two fragments. First fragment is a \"known\" list fragment which is showing a simple one item layout list
In Android API 24 FragmentTransaction has synchronous .commitNow() method.
It's in the reference now: https://developer.android.com/reference/android/app/FragmentTransaction.html#commitNow()
On the contrary, .commit() works asynchronously. It just schedules a commit of the transaction.