我需要在对话框中删除标题。请注意,我不需要空白标题。我需要删除标题部分。以下是我的代码:

final Dialog dialog1=new Dialog(context);
    dialog1.setContentView(R.layout.redeemvoucher_first);
    dialog1.setCanceledOnTouchOutside(true);
    dialog1.getWindow().setLayout(900,500);
        dialog1.show();

最佳答案

在创建对话框时试试这个

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

10-06 08:54