how to draw an arrow in android touch event?
i m trying to draw seperate straight line and an arrow head.how to set the arrowhead at the right position?
currentDrawingPath1.path.lineTo(motionEvent.getX()+5, motionEvent.getY());
currentDrawingPath1.path.lineTo(motionEvent.getX()-5, motionEvent.getY());
currentDrawingPath1.path.lineTo(motionEvent.getX(), motionEvent.getY());
above code is to draw a arrow head.
i tried this below code.this is worked for me,