我希望有我的自定義標題爲我CustomAlert
。 我爲Dialog的標題自定義佈局做了什麼?Editset自定義佈局標題我的對話框
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);
}
和becuse我不喜歡在對話框中默認的頭,我現在將其刪除,而我學有我的自定義標題。
http://stackoverflow.com/questions/2644134/android-how -to-create-a-dialog-without-a-title –