码迷,mamicode.com
首页 > 其他好文 > 详细

关于requestFeature() must be called before adding content

时间:2015-02-20 09:39:57      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

想显示dialog时,如果想显示的是自定义布局的dialog,并使用如下方式,则会报错requestFeature() must be called before adding content

AlertDialog dlg = new AlertDialog.Builder(this).create();               
dlg.setContentView(R.layout.dialog_layout);  
dlg.show(); 

修改方法是,改变一下顺序,先dlg.show();然后再进行setContentView(R.layout.dialog_layout);就没问题了。

关于requestFeature() must be called before adding content

标签:

原文地址:http://www.cnblogs.com/wytings/p/4296410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!