Я использую twolinelist для отображения двух строк в каждом элементе списка - Name и Summary.Сводка немного велика, чтобы поместиться в одну строку, поэтому, когда я отображаю ее на экране, сводка обрезается и выглядит не очень хорошо.Как можно убедиться, что вся сводка видна в элементе списка?
вот код -
<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>