0

起動して実行しようとしているRelativeLayoutので、カスタムリストに使用できますが、アイテムを互いに比較してスペースを空けようとすると、台無しになり、次のように表示されます。

リソース @id/itemName
を解決できませんでした リソース @id/textPriceFrom を解決できませんでした

それ自体が正しく配置されるため、これは奇妙ですtextPriceFromが、価格はそうではありません.

コードは次のとおりです。

    <RelativeLayout
        android:id="@+id/mainlayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

    <TextView
        android:id="@+id/itemName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="3dip"
        android:text="A good day"
        android:textSize="23dip"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/textPriceFrom"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/itemName"
        android:layout_margin="3dip"
        android:text="@string/frapris"
        android:textSize="15dip"
        android:textStyle="normal" />

    <TextView
        android:id="@+id/textPrice"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="3dip"
        android:layout_toLeftOf="@id/textPriceFrom"
        android:text="145,95"
        android:textSize="10dip"
        android:textStyle="normal" />

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_margin="3dip"
        android:src="@drawable/ic_launcher" />
</RelativeLayout>
4

2 に答える 2

1

左/右オフのandroid:layout_width="fill_parent"余地がなかったので、明らかにそのエラーが発生しました。

于 2012-06-15T12:46:28.267 に答える
0

@+id/textPriceFromの代わり に使用してみてください @id/textPriceFrom

理由を説明できなくて本当にごめんなさい。しかし、これは私にとってどのように機能するかです。

于 2012-06-15T12:29:27.710 に答える