我在最近的三个项目中遇到了无法调试的问题。在每个项目中创建每两三个活动后我得到的相同错误是:-
Parser Exception : The markup in the document preceding the root element must be well formed.
此错误出现在 AndroidManifest.xml 文件中。
为此,我正在使用 Google 提供的 ADT Eclipse。
这个错误是可调试的,还是我必须删除项目并重新开始,直到错误再次出现?
我在最近的三个项目中遇到了无法调试的问题。在每个项目中创建每两三个活动后我得到的相同错误是:-
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 中的每个标签都必须在根标签内,并且所有标签都必须完美关闭。否则会抛出错误:错误解析器异常:根元素之前的文档中的标记必须格式正确,表明根标记内的元素未正确关闭。
您的 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 上工作时,我也遇到了同样的错误。尝试ctrl+shift+F
在 XML 文件中做。它对我有用。