文档中根元素之前的标记必须格式正确
Posted
技术标签:
【中文标题】文档中根元素之前的标记必须格式正确【英文标题】:The markup in the document preceding the root element must be well-formed 【发布时间】:2015-02-05 08:10:53 【问题描述】:eclipse 在构建项目时在以下代码中显示“在验证 xml 时文档中的标记必须是格式正确的”错误。帮帮我!!
<<<<<<< Original
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.qriller"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".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>
</manifest>
>>>>>>> Added
【问题讨论】:
【参考方案1】:从您的代码中删除 <<<<<<< Original
和 >>>>>>> Added
它将起作用
【讨论】:
以上是关于文档中根元素之前的标记必须格式正确的主要内容,如果未能解决你的问题,请参考以下文章
解决:xml中出现“文档中根元素后面的标记必须格式正确。”的错误
验证 xml 时出现“根元素之前的文档中的标记必须格式正确”错误