Albus Dumbledore
Albus Dumbledore

Reputation: 12616

Android's alternatives to MIDP's drawing methods

What are the Android's alternatives to MIDP's Canvas.repaint() and Canvas.serviceRepaints()?

Upvotes: 1

Views: 117

Answers (1)

Azlam
Azlam

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

Related Questions