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 回答