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

时间:2016-03-03 14:45:09   收藏:0   阅读:2140
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()

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!