我使用twolinelistitem在每个列表项中显示两行 - 名称和摘要。摘要有点大,可以放在一行中,因此当我在屏幕上显示时,摘要会被剪切掉并且看起来不太好。 有什么方法可以确保整个摘要在列表项中可见?
这是代码 -
<TwoLineListItem android:paddingTop="2dip"
android:paddingBottom="2dip"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:mode="twoLine">
<TextView android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="27dip"
android:layout_marginTop="6dip"
android:textColor="#474747"
/>
<TextView android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@android:id/text2"
android:layout_width="fill_parent"
android:textColor="#00CDCD"
android:layout_height="wrap_content"
android:layout_below="@android:id/text1"
android:layout_alignLeft="@android:id/text1">
</TextView>
</TwoLineListItem>