ManKeer
ManKeer

Reputation: 543

Drawing Image on Android

I need to draw an image on android, but I want to draw it row by row how can I do that with good performance.

Also, if I need to draw a random region in an image how could i get it in android....

I'm totally new to the android programming.

Upvotes: 0

Views: 69

Answers (2)

sdabet
sdabet

Reputation: 18670

This is all explained in the Canvas and Drawables developer guide.

Basically the Canvas API "provides a set of 2D-drawing APIs that allow you to render your own custom graphics onto a canvas".

Upvotes: 1

Related Questions