我正在设计我的应用程序,但我在设计 ListView 项目时遇到了一些问题。
附上你可以找到它的样子,以及我想要的样子。
这是项目的布局:
<TwoLineListItem xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/activatedBackgroundIndicator"
android:minHeight="?android:attr/listPreferredItemHeight" >
<TextView android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft"
android:layout_marginTop="8dip"
android:textAppearance="?android:attr/textAppearanceListItem"
/>
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true" >
<ImageView
android:id="@+id/favourite_status"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_alignTop="@android:id/text1"
android:src="@drawable/is_not_favourite"
android:contentDescription="@string/list_favorites_status"
android:background="@null"
android:layout_margin="9dp"/>
</RelativeLayout>
<TextView android:id="@android:id/text2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@android:id/text1"
android:layout_alignLeft="@android:id/text1"
android:textAppearance="?android:attr/textAppearanceMedium"
/>
</TwoLineListItem>
问题是文本:我不希望描述在应该为空的空间中溢出。提前感谢您的帮助。