Latest Android Aptitude Question SOLUTION: How to draw directly on canvas of android UI?
Options
1) Implement your own custom View by extenting View class, and then implement onDraw method in it.
2) Take any UI control lik
Options
1) Implement your own custom View by extenting View class, and then implement onDraw method in it.
2) Take any UI control like ImageView, and draw image using canvas.
3) it is not possible to directly touch Canvas.
4) both option 1 and 2 are right