Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我这里有问题。
我有一个大文本,不适合屏幕...所以在布局 XML 我放了这个字符串:
android:ellipsize="end"
好的,但现在我想让这个 TextView 可点击,当我点击它时,我想将布局 XML 代码更改为:
android:ellipsize="marquee"
所以文本滚动,人们会阅读它。
我搜索了很多操作系统问题,但没有人回答,只是为了“可绘制”的东西。
谢谢!
利用
textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);
在 textView 点击。