I want to create a scrolling text ticker for a simple android app.
I have a large list of quotes stored in an array, and I would like to randomly populate my ticker with the quotes: one quote scrolls all the way through, then another is randomly chosen and scrolls its way through, and so on.
The ticker should chug along regardless of what's been focused on or hovered over...
1) How do I create a text ticker for these purposes?
2) How do I populate the ticker with a steady stream of random quotes selected from my array?
Thanks