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

时间:2018-05-13 04:59:10

标签: xml android-layout android-studio

我正在创建一个简单的布局,但是当我构建应用程序时。我在XML文件中得到了这个错误 - 格式不正确的无效令牌。

Screenshot

我的Android Studio遇到了不同的问题,我应该重新安装我的工作室。 我试图为CourtCounter创建Udacity项目。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TeamViewer">


<LinearLayout
    android:layout_width="192dp"
    android:layout_height="wrap_content"
    android:orientation="vertical">
       <TextView
           android:layout_width="match_parent"
           android:layout_height="35dp"
           android:textSize="20dp"
           android:text="Team A"
           />
       <TextView
           android:layout_width="match_parent"
           android:layout_height="35dp"
           android:text="Total Score:"
           />
       <TextView
           android:layout_width="match_parent"
           android:layout_height="35dp"
           android:textSize="20dp"
           android:text="zests"
 </LinearLayout>
 <LinearLayout
    android:layout_width="189dp"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:textSize="20dp"
        android:text="Team B"
        />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:text="Total Score:"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:textSize="20dp"
        android:text="bcx"
</LinearLayout>
</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

您忘记关闭以下行中的标记:

       ...

       <TextView
           android:layout_width="match_parent"
           android:layout_height="35dp"
           android:textSize="20dp"
           android:text="zests"
 </LinearLayout>

添加/>,以便它成为:

       ...

       <TextView
           android:layout_width="match_parent"
           android:layout_height="35dp"
           android:textSize="20dp"
           android:text="zests"
       />
 </LinearLayout>

请检查您的另一条线。

P.S 您可以在问题中看到缺失的一行(查看黑色线条)。