How to make DialogFragment width to Fill_Parent

前端 未结 18 2518
栀梦
栀梦 2020-12-04 08:21

I am working on an android application where I am using DialogFragment to display the dialog but its width is very small. How I can make this width to fil

18条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 08:58

    public class FullWidthDialogFragment extends AppCompatDialogFragment {
        @Override
        public void onCreate(@Nullable Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setStyle(DialogFragment.STYLE_NORMAL, R.style.Theme_AppCompat_Light_Dialog_Alert);
        }
    }
    

    and if you want much more flexibility can extend AppCompat_Dialog_Alert and custom attributes

提交回复
热议问题