Can anyone tell me how I might achieve automatic vertical scrolling of multiple TextViews?
I currently have a list like this :
TextView 1 TextView 2 TextView 3 TextView 4 TextView 5
I need to show one TextView at a time in view and scroll vertically with a short delay in between each transition, then loop back to the beginning of the list..
I've tried the marquee feature of TextView and it does not allow vertical scrolling, I also tried a custom implementation of a vertical scroller but it was not flexible enough for my needs.
It is important to nest TextView controls inside so I can colour the text on each one programatically.
Any help would be much appreciated!