it's easy to do via XML. Use the following settings:
android:singleLine="true" 单行显示
android:ellipsize="marquee" 跑马灯显示
android:marqueeRepeatLimit="marquee_forever" 设置重复滚动的次数,无限次
android:focusable="false" 设置是否获得焦点
(当执行了setFocusable (false)后,再执行 setFocusable (true) 无法输入,也获取不了焦点了。试了一下setFocusableInTouchMode(false)后,再执行setFocusableInTouchMode(true),可以正常输入,也能正常获取焦点。
setFocusableInTouchMode 与 setFocusable 之间有什么区别呢?)
android:scrollHorizontally="true" 超过textview宽度时,是否出现横拉条
If your TextView is within a RelativeLayout, the width or height will have to be static (i.e. 32dp). If you need dynamic, place the TextView in another View within the RelativeLayout.
In onCreate(), you need to make the TextView selected:
myTextView.setSelected(true);
---------------------------------------
android:ellipsize="start" 省略号在开头 android:ellipsize="middle" 省略号在中间 android:ellipsize="end" 省略号在结尾 android:ellipsize="marquee" 跑马灯显示 或者在程序中可通过setEillpsize显式设置。 注: EditText不支持marquee这种模式。
--------------------------------------
注:
多个TextView同时跑马灯效果
解决方案:
设置android:ellipsize="marquee",android:singleLine="true",android:marqueeRepeatLimit="marquee_forever"
然后代码中只要textview.setSelected(true);就行了,不用去重写Textview返回焦点为true
本文深入探讨了XML中TextView的使用,包括设置单行显示、跑马灯显示、重复滚动次数、焦点获取方式等属性,并提供了实例演示,旨在帮助开发者更高效地利用TextView进行文本展示。
1512

被折叠的 条评论
为什么被折叠?



