I have a custom view in which I override the onDraw method like so
Using java Syntax Highlighting
- protected void onDraw(Canvas canvas) {
- canvas.drawBitmap(mD.getBackImage(), 0, 0, null);
- }
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
Is there a way I can have the drawn bitmap register clicks? I would like to show a different draw a different bitmap when the one displayed on the screen is clicked.
Thanks.


