标签:
View layout = LayoutInflater.from(context).inflate(R.layout.customdialog_cartcount, null);
final Dialog dialog = new Dialog(context);
dialog.setCancelable(true);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.show();
dialog.getWindow().setContentView(layout);
标签:
原文地址:http://www.cnblogs.com/Jingerxin/p/5721436.html