Search code examples
androidandroid-dialogfragment

FILL_PARENT for DialogFragment


If I'm using Dialog then Dialog.getWindow().setLayout(LayoutParams.FILL_PARENT , LayoutParams.FILL_PARENT);

But I need to use DialogFragment.

I want


Solution

  • I found a answer. Need to add to the DialogFragment:

    public void onResume(){
            super.onResume();
            Window window = getDialog().getWindow();
            window.setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);       
            window.setGravity(Gravity.CENTER);
        }