I use ScrollView class in my application. I draw some data on canvas from the compass, these data are periodically updated by user's interaction.
How can I periodically call onDraw method without user's touch on the display? Can I periodically refresh content of the canvas without other thread and calling view.postInvalidate()
?