I have an Activity and many fragments inflated in same FrameLayout
FrameLayout
I had the same problem when dealing with Firebase's Ui Login screen. When back button was pressed it left a blank screen.
To solve the problem I just called finish() in my onStop() method for said Activity. Worked like a charm.
finish()
onStop()