Android:如何查找选框文本视图滚动持续时间的持续时间

发布于 2024-11-16 21:53:44 字数 107 浏览 2 评论 0原文

我在我的应用程序中使用文本视图,字幕限制为 1。第一次完整滚动后,我想更新文本视图内容。为此,我需要计算文本视图一次完整滚动的持续时间。有什么办法可以找到相同的吗?请帮我。

感谢和问候

I'm using a textview in my app with marquee limit 1. After the first complete scrolling i want to update the textview content. For that i need to calculate the duration for one complete scrolling of textview. Is there any way to find the same. Please help me.

Thanks And Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晨说晚安 2024-11-23 21:53:44

使用 getAnimation().getDuration() 获取选取框滚动持续时间
尝试使用以下代码。

textView = (TextView) findViewById(R.id.textview2);
long duration = textView.getAnimation().getDuration();

use getAnimation().getDuration() to get marquee scroll duration
Try with the following code.

textView = (TextView) findViewById(R.id.textview2);
long duration = textView.getAnimation().getDuration();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文