我想为我的CustomAlert
. 我要为对话框标题的自定义布局做什么?
Edit2:我添加了我的代码:
protected Dialog onCreateDialog(int id)
{
switch(id)
{
case Dialog_Reset :
Dialog dialog=new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.about);
dialog.setCanceledOnTouchOutside(true);
return dialog;
}
return super.onCreateDialog(id);
}
因为我不喜欢对话框中的默认标题,所以我现在将其删除,同时我学习使用自定义标题。