TextView限制行数

2019-03-08  本文已影响0人  五月笑忘
   <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/hospital_abstract_content"
        android:lines="2"
        android:maxLines="2"
        android:ellipsize="end"
        />

android:maxLines=”2” 最大行数限制,如果超过两行也不会再显示了
android:ellipsize=”end” 超过规定长度则使用末尾省略号
android:lines=”2” 显示两行,即使text只有一行也会占位两行的高度

上一篇下一篇

猜你喜欢

热点阅读