Anyone knows any efficient method of perform an animation that what is has to do is to display a text, character by character?, like:
T
Th
Thi
This
This i
This is
...
and so on.
Thanks!
|
|
|
This may not be the most elegant solution, but the simplest is probably a quick subclass of
You can then use this in an Activity like so:
If you want some animation effects with each letter added, perhaps look at subclassing Hope that Helps! |
|||||||||
|
|
In theory it would be string text = "hello" string temp = "h" iterate: temp += if (text.length > temp.length) text[temp.length]; wait You will ofcourse do the iterate in your runmethod. |
||||
|
|
|
Kaj's answer is mostly correct, but I wanted to expand on it a bit. Basically, as he said, you'll want to maintain a copy of the complete string, as well as a "display string" which contains only the part of the string actually being drawn on screen. Every so often, you'll concatenate an extra character from the full string onto the display string, and then redraw the display string. If you were creating a game using a simple main-loop architecture, you'd do this in some subfunction of the main loop. You could ensure that it only occurs every so often by tracking the time delta from the last occurrence. I think that is what Kaj is referring to by "runmethod." However, since you've not mentioned anything about a game, I assume that that's not what you're doing, and UI-centric Java applications will take a bit of a different approach. By subclassing TimerTask and creating a Timer, you can set your string concatenation and redrawing method to be called as often as you'd like. Basically, you'll override the |
|||
|
|
|
this new copy for Devunwired with xml layout
code use
then define textView in classStart |
|||
|
|
|
No need to set an extra class Use this, here tv is a textview in your layout just call setCharacterDelay(150);
|
|||
|
|