Custom Dialog in full screen?

前端 未结 11 1982
终归单人心
终归单人心 2020-12-08 13:35

Is there any way to make my Dialog view full screen, i.e dialog occupy the entire screen (like an Activity). I tried using the LayoutParams and styles like

11条回答
  •  醉梦人生
    2020-12-08 13:53

    Give its constructor a non-dialog theme, such as android.R.style.Theme or android.R.style.Theme_Light.

    Code by @Bob.

    Dialog dialog = new Dialog(context, android.R.style.Theme_Light); 
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    dialog.setContentView(R.layout.MyCustomDialogLayout); 
    dialog.show();
    

提交回复
热议问题