这是我尝试过的:
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() 必须在添加内容之前调用”消息,不幸的是没有明显的原因。我怎样才能实现我的目标?