Android get full width for custom Dialog

后端 未结 16 635
慢半拍i
慢半拍i 2020-12-02 15:19

in my application my created custom dialog dont have full height and i can not change and customize that.for example see this screen shot:

16条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 15:41

    MyDialogFragment myDialogFragment = 
        new MyDialogFragment(activity,arraylist.get(position).getImage());
                                    myDialogFragment.show();
    
    Window window = myDialogFragment.getWindow();
            window.setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.MATCH_PARENT);
    

提交回复
热议问题