Android get full width for custom Dialog

后端 未结 16 699
慢半拍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:57

    Dialog dialog = new Dialog(BASE_CONTEXT, R.style.Theme_Dialog);  
    dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);  
    dialog.setContentView(R.layout.your_layout);  
    dialog.getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
    

提交回复
热议问题