這是我有嘗試:AlertDialog沒有其股票的背景
public AlertDialogEx(final Context context, View lytCustom)
{
// Set your theme here
super(context, android.R.style.Theme_Translucent);
requestWindowFeature(Window.FEATURE_NO_TITLE);
// This is the layout XML file that describes your Dialog layout
this.setView(lytCustom);
// this.setContentView(lytCustom);
}
,並沒有擺脫黑色背景:
使用setContentView()
,而不是setView()
投臭名昭着的「requestFeature()必須在添加內容之前調用」消息,遺憾的是沒有明顯的原因。我怎樣才能實現我的目標?