Peter Olsbourg
Peter Olsbourg

Reputation: 487

Android - Draw Picture over ImageView

I have pretty complex custom ImageView and on the other hand I have Picture object that I want to draw it on the ImageView's canvas? Is this possible? The Picture object is not to be converted in any other type since then it'll lose quality and staff, that's why I go with Picture..

Thanks

Upvotes: 0

Views: 2816

Answers (1)

Maxim
Maxim

Reputation: 3006

You have at least 2 options:

1 - Retriev bitmap from ImageView. Create canvas from it:

     Canvas canvas = new Canvas(mImage);

Draw on that canvas.

2 - Put transparent custom View/SurfaceView over ImageView and draw on it.

Upvotes: 1

Related Questions