请查看此main.xml -
<TableLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TableLayout03">
在eclipse中它的出现很好,没有任何错误和项目正在发挥作用 在Intellij中,它阻止我的项目生成一个R.java类文件,如果我将main.xml撤消到默认值,则会出现R.java,并且它的标记为红色主机资源reference.eg R.layout.main,R。 id.myWebSite
我做错了什么?
答案 0 :(得分:1)
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
我认为你应该删除id部分。