0

我收到错误Multiple annotations found at this line: - Element type "TextView" must be followed by either attribute specifications, ">" or "/>". - error: Error parsing XML: not well-formed (invalid token)

对于以下 xml 文件:

我最近所做的更改是将行 android:layout_below 添加到除一个之外的所有文本视图中,否则文本视图会相互碰撞。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <!-- can have image view in here as well -->

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        android:paddingBottom="10dp"
        android:textColor="#CC0033"
        android:textSize="16dp" />

    <TextView
        android:id="@+id/contact"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/name"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/day1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/contact"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/from1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/day1"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/to1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/from1"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/day2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/to1"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/from2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/day2"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

    <TextView
        android:id="@+id/to2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/from2"
        android:paddingLeft="10dp"
        android:textColor="#3399FF"
        android:textSize="14dp" />

   </RelativeLayout>

帮助!

附加信息:

xml 文件用于我为 ListView 创建的 CustomListViewAdapter 扩展 ArrayAdapter 公共类。

更新

于是我把评论拿出来,把多余的加号换掉,把listview@id/name中多余的空间拿出来,一个错误消失了,剩下的一个是error: Error parsing XML: not well-formed (invalid token)

4

1 回答 1

0
android:layout_below="@+id/name"

!!!我记得,要提到一个ID,它是这样写的

android:layout_below="@id/name"

但无论如何,先试试这个,也许我错了,我会试着找出答案

于 2013-09-06T20:35:03.337 回答