1
我有自定義列表項佈局,如圖所示。 是否有可能,「粗體textview」將圍繞「價格textview」和「小字體textview」將文本包裝到第二行如果文本太長(並可能覆蓋「價格textview」)?TextView在另一個TextView周圍流動
非常感謝
佈局:
<?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"
/>
不確定是否有建議的方式。試着玩了一會兒,看看我是否可以包裝它,但它看起來並不像它被設計爲處理標準佈局資源中的這種佈局。 –