我一直在尝试运行包含谷歌地图的应用程序,但我的xml文件中出现错误:根元素后面的文档中的标记必须格式正确
以下是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ae.ac.adu.maps"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".MapsActivity"
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>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
</xml>
为什么我会收到错误?
答案 0 :(得分:2)
您有一个</xml>
结束标记,但没有匹配的开始标记。
XML声明(<?xml ?>
)是一个处理指令,而不是一个开始标记(它也必须在文档的最开头,你之前有空格)。