Reputation: 245
I want to have a drawing canvas within my application which will display letter to free draw for practice. Something like the following:
OR
This is the first time I will be implementing this method so a few questions.
I saw some tutorials but wasn't too clear on how to implement it within app.
Upvotes: 0
Views: 176
Reputation: 905
I found a solution for you. Having more than 1 Canvas
is not the answer (Although may work, I'm still new), but instead draw a seperate Bitmap
on top of the first Bitmap
(background).
Try this out for size: Overlying Bitmap
You should then be able to edit the overlaying Bitmap
without affecting the original Bitmap
.
Cheers!
Upvotes: 1