Android ADT(4.3)XML编辑器:错误解析XML:格式不正确(无效令牌)

时间:2013-12-06 13:37:59

标签: android xml-parsing

我实际上不明白为什么编辑器会在我的main_activity.xml文件中提出此错误

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <FrameLayout
        android:id="@+id/parentFrameLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ImageView
            android:id="@+id/backgroundImageView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:src="@drawable/background" >
        </ImageView>
    </FrameLayout>
</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

确认您在

之前没有任何空格或标签
<?xml version="1.0" encoding="utf-8"?>

还可以在eclipse中刷新和清理你的项目。

答案 1 :(得分:0)

在文件末尾添加换行符(\ n)。