1

我正在设计我的应用程序,但我在设计 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>

问题是文本:我不希望描述在应该为空的空间中溢出。提前感谢您的帮助。

它看起来如何

应该如何

4

1 回答 1

0

很简单,您可以执行以下操作:

<LinearLayout
    ....
    android:orientation="horizontal" 
    ....>
    <LinearLayout
        ....
        android:orientation="vertical" 
        ....>
        <TextView />
        <TextView />
    </LinearLayout>
    <ImageView />
</LinearLayout>

这是一个基本布局,您也可以使用 RelativeLayout 实现相同的效果

于 2012-04-30T09:35:45.930 回答