Android 自定义选项卡 - 文本滚动
我正在尝试实现带有彩色选项卡的自定义 TabHost。我一直在关注 stackoverflow 成员 Josh Clemm 的优秀示例。着色效果很棒。在默认的开箱即用 TabHost 中,如果选项卡中显示的文本不适合它,它会在选项卡本身内对文本进行良好的滚动。它只在活动选项卡上执行此操作,并且似乎在计时器上,它将暂停并重新滚动文本几次。
现在有了自定义选项卡,我就失去了这一点。还有其他人遇到过这个问题并已经解决了这个问题吗?
I am trying to implement a custom TabHost with colored tabs. I've been following stackoverflow member Josh Clemm's excellent example. The coloring works great. In the default out of the box TabHost, if the text to be displayed in the tab doesn't fit it, it does this nice scrolling of the text inside the tab itself. It only does this on the active tab and seems to be on a timer where it will pause and the rescroll the text a few times.
Now with the custom tabs I've lost that. Has anyone else run into this and solved this problem already?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
TextView
上使用android:ellipsize="marquee"
和相关属性。Use
android:ellipsize="marquee"
and related attributes on yourTextView
.