错误解析XML:格式不正确(无效令牌)

时间:2015-06-19 18:32:15

标签: xml android-layout layout

我在编译我的android项目时收到以下消息:

  

错误解析XML:格式不正确(令牌无效)

这是错误应该是的XML布局文件:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
            android:layout_marginEnd="5dp"
            android:layout_marginStart="5dp">

            <TextView
                android:id="@+id/pH_View"
                android:text="pH= "
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:textSize="20sp"
                android:layout_marginStart="10sp"

                />
            <TextView
                android:id="@+id/pH_Data"
                android:textSize="18sp"
                android:text=""
                android:layout_toLeftOf="@id/ph_Graph"
                android:layout_alignBaseline="@id/pH_View"
                android:layout_margin="5dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBottom="@id/pH_View"

                />
            <Button
                android:text="Graph"
                android:id="@+id/ph_Graph"
                android:layout_alignParentEnd="true"
                android:layout_alignBaseline="@id/pH_View"
                android:textAllCaps="false"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                />

            <TextView
                android:id="@+id/EC_View"
                android:text="EC (uS/cm2)= "
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:textSize="20sp"
                android:layout_marginStart="10sp"
                android:layout_below="@id/pH_View"

                />
            <TextView
                android:id="@+id/EC_Data"
                android:textSize="18sp"
                android:text=""
                android:layout_toLeftOf="@id/EC_Graph"
                android:layout_alignBaseline="@id/EC_View"
                android:layout_margin="5dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />

            <Button
                android:text="Graph"
                android:id="@+id/EC_Graph"
                android:layout_alignParentEnd="true"
                android:layout_alignBaseline="@id/EC_View"
                android:textAllCaps="false"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />

            <TextView
                android:id="@+id/DO_View"
                android:text="Dissolved Oxygen= "
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:textSize="20sp"
                android:layout_marginStart="10sp"
                android:layout_below="@id/EC_View"

                />
            <TextView
                android:id="@+id/DO_Data"
                android:textSize="18sp"
                android:text=""
                android:layout_toLeftOf="@id/EC_Graph"
                android:layout_alignBaseline="@id/DO_View"
                android:layout_margin="5dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />

            <Button
                android:text="Graph"
                android:id="@+id/DO_Graph"
                android:layout_alignParentEnd="true"
                android:layout_alignBaseline="@id/DO_View"
                android:textAllCaps="false"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />
            <TextView
                android:id="@+id/resTemp_View"
                android:text="Reservoir Temp (C)= "
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:textSize="20sp"
                android:layout_marginStart="10sp"
                android:layout_below="@id/DO_View"

                />
            <TextView
                android:id="@+id/resTemp_Data"
                android:textSize="18sp"
                android:text="None"
                android:layout_toLeftOf="@id/EC_Graph"
                android:layout_alignBaseline="@id/resTemp_View"
                android:layout_margin="5dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />

            <Button
                android:text="Graph"
                android:id="@+id/resTemp_Graph"
                android:layout_alignParentEnd="true"
                android:layout_alignBaseline="@id/resTemp_View"
                android:textAllCaps="false"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />
            <TextView
               android:id="@+id/groveTemp_View"
               android:text="Grove Temp (C)= "
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:layout_centerVertical="true"
               android:layout_marginTop="20dp"
               android:layout_marginBottom="20dp"
               android:textSize="20sp"
               android:layout_marginStart="10sp"
               android:layout_below="@id/resTemp_View"
               />

          <TextView
               android:id="@+id/groveTemp_Data"
               android:textSize="18sp"
               android:text="None"
               android:layout_toLeftOf="@id/EC_Graph"
               android:layout_alignBaseline="@id/groveTemp_View"
               android:layout_margin="5dp"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               />

            <Button
                android:text="Graph"
                android:id="@+id/groveTemp_Graph"
                android:layout_alignParentEnd="true"
                android:layout_alignBaseline="@id/groveTemp_View"
                android:textAllCaps="false"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />


        </RelativeLayout>

        <RelativeLayout
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:orientation="horizontal"
            android:layout_margin="40dp">


            <Button
                android:id="@+id/requestConnection"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:text="Request Connection"
                android:onClick="requestConnection"
                android:layout_centerInParent="true"
                />

            <Button
                android:id="@+id/requestReading"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:layout_gravity="center"
                android:text="Request Reading"
                android:onClick="requestReading"
                android:layout_centerInParent="true"
                />

       </>

   </LinearLayout>

任何人都可以帮我找到问题所在吗?我错过了什么吗?

1 个答案:

答案 0 :(得分:2)

</>不是XML文件中的有效令牌。

RelativeLayout的结束标记应为</RelativeLayout>