问题无法解析XML,不知道为什么我收到此错误?

时间:2019-03-12 07:18:59

标签: android xml

这是我的AndroidManifest.XML代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.connect3">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="Tic Tac Toe"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        android:layout_width="wrap_content"
       android:layout_height="wrap_content"
        android:layout_gravity="center"
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

一切都很好,不知道发生了什么,昨晚我的代码运行良好,但是现在我遇到了这个问题,任何人都可以帮助我。

错误:无法解析XML, ParseError at [row,col]:[13,44], 讯息:预期的开始或结束标记, 受影响的模块:应用

0 个答案:

没有答案