本文主要是介绍解决:requestFeature() must be called before adding content,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
开发中出现这样的错误:requestFeature() must be called before adding content
首先:这句话的大概意思是说,requestFeature()这个方法要放到内容前面。
举个例子:
this.setContentView(R.layout.layout_update);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
正确的写法是:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.setContentView(R.layout.layout_update);
查看你的程序,调整过来即可。
这篇关于解决:requestFeature() must be called before adding content的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!