4

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

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

3 回答 3

6

在创建对话框时尝试这个

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
于 2012-09-13T13:47:05.633 回答
3

在调用之前setContentView,添加以下内容以删除标题:

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
于 2012-09-13T13:47:30.770 回答
1

尝试更换:

Dialog dialog1=new Dialog(context)

和:

Dialog dialog1=new Dialog(context, android.R.style.Theme_NoTitleBar);
于 2012-09-13T14:20:52.323 回答