它工作得很好,但后来我进行了一些小编辑,现在它不起作用......这是主要的布局xml文件......它在第3行给出错误。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="0dip"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="6">
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="2"
android:background="#FFFF00"
android:text="@string/yellow"
android:textColor="#FFFFFF"
android:gravity="center_horizontal"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#FFFFFF"
android:text="@string/helo"
android:textColor="#000000"
android:gravity="center_horizontal"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#FFFF00"
android:text="@string/yellow"
android:textColor="#FFFFFF"
android:gravity="center_horizontal"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dip"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="4">
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:text="@string/blue"
android:layout_weight="3"
android:textColor="#FFFFFF"
android:background="#0000FF" />
<TextView
android:background="#FFFFFF"
android:text="@string/helo"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:textColor="#000000"
android:layout_weight="1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:text="@string/yellow"
android:background="#FFFF00" />
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="@string/blue"
android:background="#0000FF"
android:textColor="#FFFFFF" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:32)
我认为您的文件位于错误的目录中。布局文件应位于项目中的res/layout/
目录中。我的猜测是你在其他res/
目录中有它。
答案 1 :(得分:1)
尝试@ CommonsWare的建议。如果这不起作用,请尝试删除Eclipse中的错误消息。 (即右键单击并选择删除。)我经常发现我修复了XML布局中的问题,但IDE没有注意到,并且不断报告错误,使我无法编译。在这种情况下,只需删除错误消息即可解决此问题。如果这不起作用,请尝试进行干净的构建。