如何添加我在 setcontentview() 函数中创建的 xml 文件
Posted
技术标签:
【中文标题】如何添加我在 setcontentview() 函数中创建的 xml 文件【英文标题】:How do I add an xml file that I created in the setcontentview() function 【发布时间】:2015-08-30 17:22:49 【问题描述】:我在我的 android 项目中创建了一个 xml
文件,名为 calc.xml
但我无法在setcontentview()
函数中提供我的xml
文件
必须做什么?
【问题讨论】:
你可以像 setcontentview(R.layout.calc) 一样调用它 确保您正在扩展活动并在 oncreate 方法中编写此代码 检查 R.java 你正在导入它必须是你的项目包而不是 android 【参考方案1】:通常是这样的:
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.calc);
如果您的问题仍然存在,请发布一些代码。
【讨论】:
以上是关于如何添加我在 setcontentview() 函数中创建的 xml 文件的主要内容,如果未能解决你的问题,请参考以下文章