XML文件格式化问题

时间:2014-04-07 17:20:30

标签: android

我正在根据网络教程创建一个Android应用。我在这个布局文件中遇到了问题,但我没有看到问题。显示的错误是:

Element Type LinearLayout must be followed by either attribute specifications > or />.

布局XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp" >
 
    <!-- Name Label -->
 
    <TextView
        android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="2dip"
        android:paddingTop="6dip"
        android:textColor="#43bd00"
        android:textSize="16sp"
        android:textStyle="bold" />
 
    <!-- Email label -->
    <TextView
        android:id="@+id/email"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="2dip"
        android:textColor="#acacac" />
 
    <!-- Mobile number label -->
    <TextView
        android:id="@+id/mobile"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:text="Mobile: "
        android:textColor="#5d5d5d"
        android:textStyle="bold" />
 
</LinearLayout>

修改

enter image description here

1 个答案:

答案 0 :(得分:1)

我没有看到布局的任何问题我甚至将它粘贴在我的日食中并且它没有给我任何错误,你需要清理你的项目然后它会工作正常,从顶部导航菜单点击项目然后清理并选择您的项目文件夹。