安卓manifest标红,界面跳转不了怎么解决?

问题遇到的现象和发生背景

显示登陆成功,但是跳转不到下一界面。

img

问题相关代码,请勿粘贴截图
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.zhang.onlineshop">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:largeHeap="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.aboutme.AboutMore" />
        <activity android:name="com.search.SearchMain" />
        <activity android:name="com.boutique.Jingpin" />
        <activity android:name="com.loginhelper.QuickLogin" />
        <activity android:name="com.aboutme.AboutMe" />
        <activity android:name="com.loginhelper.enterActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <activity android:name="com.shopcar.ShoppingActivity" />
        <activity android:name="com.vip.VipActivity" />
        <activity android:name="com.mainpage.Main2Activity">

        </activity>
        <activity android:name="com.LoginActivity" />
        <activity android:name="com.Register" />
    </application>

</manifest>


运行结果及报错内容

报错显示为:Top level element is not completed和Valid XML document must have a root tag

我的解答思路和尝试过的方法 网上实在找不到解决方法,求细致讲解步骤。感谢感谢!
我想要达到的结果

xml标红是由于节点没有相互匹配导致的,检查一下是否有没有匹配的节点.

哪一行标红呢,你要标识出来