如何在Android中获得具有水平滚动和自动滚动功能的TextView?
我想要一个具有水平滚动功能的简单 TextView,我知道我使用 HorizontalScrollview 来实现这一点,并且我希望文本能够连续自动滚动。这可能吗?
I want to have a simple TextView with horizontal scrolling, I know that I use HorizontalScrollview for that and I want the text to be autoscrolled continuously. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 TextView 属性中使用 android:ellipsize="marquee" 或实现您自己的动画
You could use android:ellipsize="marquee" in the TextView attributes or by implement your own animation
这是一个简单使用 XML 的自动滚动文本视图的小示例,无需编写 Java 代码。希望你会喜欢它!自己尝试一下,很容易执行
试试这个:
单击此处查看输出
这里的文本将自动滚动,您将获得无限滚动。玩得开心!
点击此处查看详细教程
This is small example for auto scroll text view simply using XML, no need to code Java. Hope you will like it! Try it on your own, it is very easy to perform
Try this :
Click here to see the Output
Here text will scroll automatically and you will get infinite scroll. Have fun!
Click here to see detailed tutorial