0

私が書いたコードの何が問題なのかを理解しようとしています。Eclipse で次のエラーが発生します: XML 解析エラー: 十分な情報がありません (無効なトークン)。エラーは、太字でマークされた行に表示されます。この問題を解決するために、私が知っているすべてのことを試しました。誰かがそれを助けることができれば、それは素晴らしいことです。

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
    <LinearLayout android:orientation="vertical"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        />
        <TextView android:id="@+id/name"
            **android:layout_height="wrap_content"**
            android:layout_width="match_parent"
            android:paddingBottom="2dip"
            android:paddingTop="6dip"
            android:textStyle="bold"
            android:textSize="16sp"
            android:textColor="#dc6800"> </TextView>
        <!-- Description label -->
        <TextView android:layout_height="wrap_content"
            android:layout_width="fill_parent"
            android:paddingBottom="2dip"
            android:textColor="#acacac"
            android:id="@+id/description"> </TextView>
        <!-- Linear Layout for cost and price Cost:Rs.100 -->
        <LinearLayout android:orientation="horizontal"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
            <!-- Cost Label -->
            <TextView 
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textStyle="bold"
                android:textColor="#5d5d5d"
                android:text="Cost:"
                android:gravity="left" />
            <!-- Price Label -->
            <TextView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textStyle="bold"
                android:textColor="#acacac"
                android:id="@+id/cost"
                android:gravity="left"
                />
        </LinearLayout>
       </LinearLayout>
</LinearLayout>
4

1 に答える 1