0

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

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

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

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

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

4

3 回答 3

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>

于 2013-04-20T13:40:58.667 回答
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>
于 2013-04-20T13:00:37.233 回答
0

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

于 2013-04-20T14:17:30.027 回答