Reputation: 12616
What are the Android's alternatives to MIDP's Canvas.repaint()
and Canvas.serviceRepaints()
?
Upvotes: 1
Views: 117
Reputation: 2082
View.invalidate()
if called from the UI thread and View.postInvalidate()
if called from a non-UI thread, This will take care of Canvas.repaint()
I dont think android has an equivalent to Canvas.serviceRepaints()
Upvotes: 1