我一直在尝试创建一个xml文件,该文件在选项卡式布局中集成了相对布局。这是我的代码:
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
<RelativeLayout
android:id="@+id/simpleMode
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</RelativeLayout>
</LinearLayout>
</TabHost>
我收到了很多错误,我似乎无法找到我的问题: 我的错误是相对布局必须跟着&gt;或/&gt; 和 找不到与android:id =“@ + id / simpleMode
的给定名称相匹配的追索权任何帮助将非常感谢谢谢!
答案 0 :(得分:3)
请在android:id="@+id/simpleMode
之后看到你遗失。所以你的xml文件给出了错误。只是把它放了并运行
答案 1 :(得分:1)
轻松找到这些错误的最佳方法是通过XML验证程序运行XML。 XML验证器会告诉您XML的确切错误。
我通常在这里使用W3 Schools XML验证器:http://www.w3schools.com/xml/xml_validator.asp