Android Manifest.xml被破坏了



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

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

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

我使用的是Google提供的ADT Eclipse。

这个错误是可调试的,还是我必须删除项目并重新开始,直到错误再次出现?

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>

XML中的每个标记必须位于根标记内,并且所有标记必须完全关闭。错误Parser Exception:文档中根元素前面的标记必须是格式良好的声明根标记内的元素没有正确关闭。

你的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>

您是否在两个操作系统之间交换项目文件?当我在linux上工作,而我的项目伙伴在windows上工作时,同样的错误也出现在我身上。尝试在XML文件中执行ctrl+shift+F

相关内容

  • 没有找到相关文章

最新更新