错误:(54)解析XML时出错:标记不匹配

时间:2017-08-11 12:31:19

标签: android xml

我在使用Android Studio时非常陌生,而且我正在尝试构建"该项目让我得到上述错误。

据我了解,错误意味着我没有关闭.xml文件中的XML标记,但我无法找到哪个标记。我得出的结论是,错误可能是另一个导致标签不匹配的错误"。

   <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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="com.example.alexa.andorfightapp.SelectEnemy">
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"
    tools:layout_editor_absoluteY="8dp"
    tools:layout_editor_absoluteX="8dp">

        <TableLayout
            android:layout_width="368dp"
            android:layout_height="495dp">

            <TableRow
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <EditText
                    android:id="@+id/auswahlTextBox"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:ems="10"
                    android:inputType="textPersonName"
                    android:text="@string/gegenerauswahl" />
            </TableRow>

</TableLayout>
    <TableLayout
        android:layout_width="368dp"
        android:layout_height="wrap_content"
        tools:layout_editor_absoluteY="100px"
        tools:layout_editor_absoluteX="8dp">
            <TableRow
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                tools:layout_editor_absoluteY="0dp"
                tools:layout_editor_absoluteX="8dp">


                <ImageButton
                    android:id="@+id/goreBtn"
                    android:layout_height="220px"
                    android:layout_column="0"
                    android:src="@drawable/gore" />

                <ImageButton android:layout_height="220px" android:layout_column="1" android:id="@+id/skralBtn" android:src="@drawable/skral"/>
                <ImageButton android:layout_height="220px" android:layout_column="2" android:id="@+id/trollBtn" android:src="@drawable/troll"/>

            </TableRow>
            <TableRow
                android:layout_width="368dp"
                android:layout_height="wrap_content"
                tools:layout_editor_absoluteY="0dp"
                tools:layout_editor_absoluteX="8dp">
            <ImageButton android:layout_height="150dp" android:id="@+id/dragonBtn" android:src="@drawable/dragon_middle"
                android:layout_width="0dp"
                tools:layout_editor_absoluteY="0dp"
                tools:layout_editor_absoluteX="0dp" />
        </TableRow>
            <TableRow
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                tools:layout_editor_absoluteY="0dp"
                tools:layout_editor_absoluteX="8dp">
            <ImageButton android:layout_height="300px" android:id="@+id/specialBtn" android:src="@drawable/star_small" />
            <TableRow/>
        </TableLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>

0 个答案:

没有答案