How to draw a line (not a straight one just random continuous point(like we draw with pencil)) and then to erase it.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
it is finger painting application
for erase
|
|||||||||
|
|
What i did is i created a dynamic array with center points of the pencil line. If you want to make the pencil so sharp you need to record all the points in the array. And drew all the points with 1pixel radius circles. The radius can be changed as the sharpness of the pencil. When you need to erase this, when you are in erase mode when your finger or pointer go through an already entered point in array you just delete it. |
|||
|
|
|
public class MyView extends View {
|
|||
|
|
|
I can't comment on that answer. for erase
you can draw again by
|
|||
|
|