I've created a scrolling textview and have been able to add text and scroll just fine. The thing is, I'm trying to add text at timed intervals and said interval can be adjusted by the user by hitting one of two buttons at the bottom of the screen. Everything is in place, but no matter what I do, I can only get it to display all of the text at once after the whole duration. Say I'm trying to add text every half second for ten seconds. Running it results in nothing for ten seconds, and then everything shows up. I've tried for/while loops with counters and keeping track via system time. Nope. Recursion blows the stack in no time, which wasn't much of a surprise. Using wait() or Thread.sleep() don't work and wouldn't be ideal anyway as the buttons need to be live at all times. Making a separate thread in a private inner class didn't work as you can't touch Views created in another thread. Trying to create a custom View in separate thread refused to work for reasons I can't figure out just yet.
How in the heck would I do this so each entry is added in real time?
In My case It works Fine for Autoscroling along with one Timer object