Android showDialog时报错requestFeature() must be called before adding content

View view = View.inflate(this, R.layout.layout_dialog, null);
        AlertDialog alertDialog = new AlertDialog.Builder(TabActivity.this, R.style.CustomDialog).create();
        alertDialog.setContentView(view);
        alertDialog.show();
        alertDialog.setCanceledOnTouchOutside(true);
        alertDialog.setCancelable(true);

运行上面的代码报错:

技术分享

 

原因:

于dialog.show()之前调用了dialog.setContentView()或者dialog.getwindow()等,正确的应该是dialog.show()之后调用dialog.setContentView()

文章来自:http://www.cnblogs.com/butterfly-clover/p/5238213.html
© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3