跑马灯效果的TextView之singLine 和maxLines

Posted Anglus Wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跑马灯效果的TextView之singLine 和maxLines相关的知识,希望对你有一定的参考价值。

 android 的TextView 里面有两个属性 singLine 和maxLines 。 从字面意思来理解,这两个都是限制Text的行数。那么singleLine="true" 和maxLine="1" 都是限制为一行,有什么区别呢?

    先看看Google Document 的解释:

    
android:maxLines
   Makes the TextView be at most this many lines tall. 

    android:singleLine  Constrains
the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key. 

 

    可以看出,maxLines 是在限制高度, singleLine 是强制不让换行。具体效果有什么区别呢? 从高度来讲是一样的,两者肯定都显示一行,但从换行的位置来讲就有区别了,maxLines并不会改变其换行的位置,而singleLine则会。从这个角度讲,singleLine的显示会好一些,因为如果超过一行singleLine会在一行内显示,后面加上"..."
,而maxlines="1" 则不会,它依然会在原来换行的位置换行,所以有时候一行不满,但是却不显示剩下的部分。

 

对比下: (Text 的内容为:新建文件夹qqqqqqqqqqqqqqqqqqqqqqqq)

maxLines = “1”  显示: 

 

技术分享

 

singleLine=“true" 显示:

 

技术分享

以上是关于跑马灯效果的TextView之singLine 和maxLines的主要内容,如果未能解决你的问题,请参考以下文章

Android移动应用开发之TextView实现阴影跑马灯文字效果

TextView标签的属性和跑马灯效果

Android TextView设置跑马灯效果

android TextView实现跑马灯效果

Android 开发学习

Android TextView跑马灯效果