dialogFragment in landscape is not appearing

79 Views Asked by At

I have a problem with a fragment dialog, if the phone is on portrait mode, everything is ok, but when I rotate my phone, in the landscape, if i launch the dialogFragment, only the header of the dialog is visible

i tried this below but it doesn't work

override fun onStart() {
            super.onStart()
            if (dialog != null) {
                val width = ViewGroup.LayoutParams.MATCH_PARENT
                val height = ViewGroup.LayoutParams.MATCH_PARENT
                dialog!!.window!!.setLayout(width, height)
            }
        }

enter image description here

All of my code

MainActivity
dialogFragment
Layouts

0

There are 0 best solutions below