private void showMyDialog(int layoutId){
LayoutInflater inflater = LayoutInflater.from(mContext);
View fourView = inflater.inflate(layoutId, null);
AlertDialog myDialog = new AlertDialog.Builder(context).create(); //加上以下这句代码
myDialog .setView(((Activity) mContext).getLayoutInflater().inflate(layoutId, null))
myDialog .show();
myDialog .getWindow().setContentView(fourView);
}
网友评论