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
You have at least 2 options:
1 - Retriev bitmap from ImageView. Create canvas from it:
Draw on that canvas.
2 - Put transparent custom View/SurfaceView over ImageView and draw on it.