Android Manifest.xml已损坏

时间:2013-04-20 12:57:21

标签: android debugging android-manifest corruption parsing-error

我在前三个项目中遇到了一个无法调试的问题。 在每个项目中创建每两到三个活动后我得到的同样错误是: -

Parser Exception :  The markup in the document preceding the root element must be well formed.

此错误出现在AndroidManifest.xml文件中。

我正在使用Google提供的ADT Eclipse。

此错误是否可调试,或者我必须删除项目并重新开始整体,直到错误再次发生?

3 个答案:

答案 0 :(得分:1)

package="com.example.sqlitenew"

android:versionCode="1"

android:versionName="1.0" >


<uses-sdk

    android:minSdkVersion="8"

    android:targetSdkVersion="17" />


<application

    android:allowBackup="true"

    android:icon="@drawable/ic_launcher"

    android:label="@string/app_name"

    android:theme="@style/AppTheme" >

    <activity

        android:name="com.example.sqlitenew.MainActivity"

        android:label="@string/app_name" >

        <intent-filter>

            <action android:name="android.intent.action.MAIN" />


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

        </intent-filter>

    </activity>

</application>

答案 1 :(得分:0)

XML中的每个标记都必须位于根标记内,并且所有标记必须完全关闭。否则会抛出错误:错误分析程序异常:根元素之前的文档中的标记必须格式正确表明根标记内的元素未正确关闭。

您的XML格式应为

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test"
    android:versionCode="1"
    android:versionName="1.0" >
    <application>
        <!-- activities declaration -->
    </application>
</manifest>

答案 2 :(得分:0)

您是否在两个操作系统之间交换项目文件?当我在Linux和我的项目合作伙伴在Windows上工作时,同样的错误来了。 尝试在XML文件中执行ctrl+shift+F。它对我有用。