我知道有很多关于此的问题,但我真的不知道我在XML文本中出现编译错误。
我目前正在使用按钮测试MapView。所以在设计中我从调色板中拖出一个按钮并将其放在XML设计中,当我点击构建/运行时,我收到一个错误:
Error:(39) Error parsing XML: not well-formed (invalid token)
我的XML代码:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.markjacks.myapp.MapsActivity" >
<fragment
android:id="@+id/map"
class="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="0dp"
android:layout_height="0dp"
map:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp"
android:layout_marginRight="8dp"
map:layout_constraintRight_toRightOf="parent"
map:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
map:layout_constraintLeft_toLeftOf="parent"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"/>
<Button
android:id="@+id/GoToLive"
android:layout_width="90dp"
android:layout_height="46dp"
android:text="< Live"
android:layout_marginRight="8dp"
map:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="8dp"
map:layout_constraintLeft_toLeftOf="parent"
map:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="8dp"
map:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="8dp"
map:layout_constraintHorizontal_bias="0.498"
map:layout_constraintVertical_bias="0.03" />
</android.support.constraint.ConstraintLayout>
当Button处于XML格式时,我只收到此“解析XML错误:格式错误”错误,因此它与地图片段无关。那么我的编译错误在哪里?