美文网首页
TextView超过滚动问题

TextView超过滚动问题

作者: 御坂七十一号 | 来源:发表于2020-09-18 09:52 被阅读0次

1.在xml的Text控件内添加如下代码

android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"

2.给textView设置textview.setSelected(true);:

textview.setSelected(true);

以上代码都必须添加,否则无法实现效果。只要这三个就行,加了其他的会导致失效。
不要在xml上添加下面的代码
android:focusable=""
android:focusableInTouchMode=""
android:textIsSelectable=""

相关文章

网友评论

      本文标题:TextView超过滚动问题

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