gpt4 book ai didi

blackberry - TextField 水平滚动

转载 作者:行者123 更新时间:2023-12-04 05:35:46 25 4
gpt4 key购买 nike

嗨,我已经通过此链接实现了水平滚动文本 LabelField Marquee .但是我有一个问题,文本滚动得很好,但它被覆盖在添加的原始文本上。有人知道如何解决这个问题吗?我还尝试通过 invalidate() 刷新 View 但没有用。我已经添加了我面临的问题的屏幕截图。

任何帮助将是可观的。

谢谢。

enter image description here

最佳答案

我建议您将绘制方法更改为下一个:

 public void paint(Graphics graphics) {
currentText = this.getText();
if (currentChar < currentText.length()) {
currentText = currentText.substring(currentChar);

}
graphics.drawText(currentText, 0, 0, DrawStyle.ELLIPSIS, 200);
}

所以不要打电话 super.paint()在您的 paint .

关于blackberry - TextField 水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11964821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com