7

如果文本比文本视图的宽度长,则在第二行之后,它会剪切它并在其末尾添加“...”。方向无关紧要,它只会显示更多文本,直到第二行结束,这里是 textview XML:

<TextView android:id="@+id/ContentViewerDescription"
                android:layout_width="wrap_content" 
                android:layout_height="match_parent"
                android:layout_weight="1" 
                android:ellipsize="end"
                android:maxLines="20"
                android:textColor="#999999"
                android:layout_marginTop="10px"
                android:layout_marginLeft="10px"/>
4

1 回答 1

6

更改为android:layout_height="wrap_content" 并删除android:ellipsize="end"

于 2010-06-25T21:57:16.213 回答