美文网首页
TextView限制行数

TextView限制行数

作者: 五月笑忘 | 来源:发表于2019-03-08 15:19 被阅读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只有一行也会占位两行的高度

相关文章

网友评论

      本文标题:TextView限制行数

      本文链接:https://www.haomeiwen.com/subject/acvrpqtx.html