Custom Dialog without title and border

后端 未结 8 880
终归单人心
终归单人心 2021-02-01 20:19

Based on the code here, http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog . I am successfully able to create a custom dialog with background and buttons ins

8条回答
  •  深忆病人
    2021-02-01 21:01

    Dialog dialog = new Dialog(Main.this);
    dialog.getWindow();
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    

提交回复
热议问题