错误:(1)解析XML时出错:XML声明格式不正确

时间:2017-09-23 07:59:43

标签: android xml

<?xml version="1.0"encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schema.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.tk2323.ftsm.lab_ui_intent_a160158.MainActivity">

请帮助我这是我第一次使用Android工作室,我有3个错误,它说关于xml。我不太确定这个.......

 Error:(1) Error parsing XML: XML declaration not well-formed

1 个答案:

答案 0 :(得分:0)

根据XML specifications你错过了一个空格,它应该是:

<?xml version="1.0" encoding="utf-8"?>