我需要在对话框中删除标题。注意我不需要一个空白的标题。我需要删除标题部分。以下是我的代码:
final Dialog dialog1=new Dialog(context);
dialog1.setContentView(R.layout.redeemvoucher_first);
dialog1.setCanceledOnTouchOutside(true);
dialog1.getWindow().setLayout(900,500);
dialog1.show();
答案 0 :(得分:6)
在创建对话框时尝试此操作
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
答案 1 :(得分:3)
在致电setContentView
之前,请添加此内容以删除标题:
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
答案 2 :(得分:1)
尝试更换:
Dialog dialog1=new Dialog(context)
使用:
Dialog dialog1=new Dialog(context, android.R.style.Theme_NoTitleBar);