本文介绍了终端比如滚动文字的Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图像我写的应用效果终端获取文本滚动。问题是,所有的文字已被添加之后的TextView只更新。
I'm trying to get a text scrolling by terminal like effect for an application I'm writing. The problem is that the textview only updates after all the text has been added.
怎样才能得到它,所以它更新的每一行?
How can I get it so it updates every line?
推荐答案
呼叫的迫使它重绘自己。
Call textView.invalidate()
to force it to redraw itself.
这篇关于终端比如滚动文字的Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!