显示登陆成功,但是跳转不到下一界面。
<?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标红是由于节点没有相互匹配导致的,检查一下是否有没有匹配的节点.
哪一行标红呢,你要标识出来