Full screen DialogFragment

前端 未结 10 2001
执笔经年
执笔经年 2021-02-04 02:26

I am trying to create a DialogFragment with a width of MATCH_PARENT so the dialog is nearly full screen (leaving the padding around the edges for the floating look). I have see

10条回答
  •  既然无缘
    2021-02-04 02:58

    On DialogFragment following works. In onCreateView() add following

    getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE); 
    

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        //…
        getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        //…
        return view;
    }
    

提交回复
热议问题