<@U3V9RCY2D> <@U0F8Y5E5A> This is what I'm doing: ...
# android
v
@enighma @mg6maciej This is what I'm doing:
Copy code
val ft = fragmentManager.beginTransaction()
            ft.add(R.id.container, myFragment())
            ft.hide(this)
            ft.addToBackStack(null)
            ft.commit()
myFragment basically creates a blank fragment with background color set to
red
. The fragment appears, but it is blank. All I see is grey and not the red background that I have set it to in myFragment(). Any help would be appreciated. Thank you!