Android:TextView最小行数设置

Posted 放纵的卡尔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:TextView最小行数设置相关的知识,希望对你有一定的参考价值。

我们有时候为了保证TextView必须有一个最小的高度,那么就需要设置这个行数。

因为如果你不设置的话,在measure这个TextView的时候,此时就无法准确的得到一个最小高度。因为设备不同,所以必须measure(0,0)来获取到。

默认TextView的高度是1行。

    <TextView
       android:background="#220000ff"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:lines="8"
        android:text="hahaha" />

 

以上是关于Android:TextView最小行数设置的主要内容,如果未能解决你的问题,请参考以下文章

Android TextView 限制显示行数

Android TextView限制最大行数且在最后显示...全文

Android:Textview 通过代码设置 Drawable

android textview设置值代码怎么加空格

如何在android textview 设置背景色

以编程方式将文本颜色设置为主要的 android textview