“Android Dialogfragment Full Stack Overflow” Código de respuesta

Android Dialogfragment Full Stack Overflow

This below answer works for me in fragment dialog.  


  Dialog dialog = getDialog();
        if (dialog != null)
        {
            int width = ViewGroup.LayoutParams.MATCH_PARENT;
            int height = ViewGroup.LayoutParams.MATCH_PARENT;
            dialog.getWindow().setLayout(width, height);
        }
Nasty Narwhal

Android Dialogfragment Full Stack Overflow

override fun onStart() {
    super.onStart()
    dialog?.let {
        val width = ViewGroup.LayoutParams.MATCH_PARENT
        val height = ViewGroup.LayoutParams.MATCH_PARENT
        it.window?.setLayout(width, height)
    }
}
Nasty Narwhal

Respuestas similares a “Android Dialogfragment Full Stack Overflow”

Preguntas similares a “Android Dialogfragment Full Stack Overflow”

Más respuestas relacionadas con “Android Dialogfragment Full Stack Overflow” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código