扩展 ListView 元素的高度,使文本显示在多行上

Extend the height of a ListView element so that the text appear on multiple lines

我正在尝试开发一个应用程序,在横向模式下,它将 activity 分成 2 个片段。在第一个片段中,我有一个包含图标和一些文本的 listView。我的问题是,如果文本足够长,文本会被缩短并出现 3 个点,从而表明文本比那个长。 我怎样才能让文本在多行上延伸,这样文本就不再被缩短,而是显示完整了?

我搜索了其他答案,但找不到任何合适的答案。

每行的 xml 如下所示:

            <ImageView
                android:id="@+id/ImageView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="2dp"
                android:contentDescription="@string/empty"
                android:padding="1dp"
                android:src="@drawable/icon" >
            </ImageView>

            <TextView
                android:id="@+id/TextView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingLeft="2dp"
                android:singleLine="true"
                android:text="@string/text_view"
                android:textStyle="bold" >
            </TextView>

谢谢。

尝试将您的 TextView 更改为以下内容:

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_centerVertical="true"
    android:text="Dummy Text"
    android:textColor="#000000"
    android:lines="2" <!-- put this line if you always want to show 2 lines -->
    android:textStyle="bold"
    android:maxLines="2" <!-- max number of size... used when text is long -->
   />

删除 android:singleLine="true" 行后尝试

因为它强制 textview 只显示一行

             <TextView
                android:id="@+id/TextView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingLeft="2dp"
                android:text="@string/text_view"
                android:textStyle="bold" >
            </TextView>