1

画像に示すように、カスタム リスト アイテム レイアウトがあります。「太字のテキストビュー」が「価格のテキストビュー」の周りを流れ、テキストが長すぎる場合に「小さなフォントのテキストビュー」がテキストを2行目に折り返す可能性はありますか(そして「価格のテキストビュー」をオーバーレイする可能性があります)?

どうもありがとう

ここに画像の説明を入力

レイアウト:

<?xml version="1.0" encoding="utf-8"?>

<!--  ListRow Left sied Thumbnail image -->
<LinearLayout android:id="@+id/thumbnail"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:padding="3dip"
              android:layout_alignParentLeft="true"
              android:background="@drawable/image_bg"
              android:layout_marginRight="5dip">

    <ImageView
            android:id="@+id/list_image"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:src="@drawable/product_dummy"
            android:contentDescription="@string/list_image_desc"/>

</LinearLayout>

<TextView
        android:id="@+id/product_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/thumbnail"
        android:layout_toRightOf="@+id/thumbnail"

        android:text="product name"
        android:textColor="#040404"
        android:typeface="sans"
        android:textSize="15dip"
        android:textStyle="bold"
        />

<TextView
        android:id="@+id/product_price"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_below="@+id/product_name"
        android:gravity="bottom|right"
        android:text="100€"
        android:layout_marginRight="5dip"
        android:textSize="25dip"
        android:textColor="#6bc920"
        android:textStyle="bold"/>

<TextView
        android:id="@+id/product_form"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/product_name"
        android:textColor="#343434"
        android:textSize="10dip"
        android:layout_marginTop="1dip"
        android:layout_toRightOf="@+id/thumbnail"
        android:layout_toLeftOf="@+id/product_price"
        android:text="product form"
        android:layout_alignRight="@+id/product_name"
        />

4

1 に答える 1

0

TextView でこれを行う方法がわかりません。代わりに WebView を使用し、標準の html/css 手法を使用して右側に価格を表示することをお勧めします。

于 2013-05-29T20:33:30.373 に答える