I would like to have the app draw several lines for showing user directions by using a background image as a base view and the app "draws" onto it in another layer on top of the background ImageView. Several lines would be made for the objectives to be met, and also in a specific location, so it has to have several layers too right??
I found a trick for drawing a single line using XML
<View 
  android:id="@+id/line"
  android:layout_width="2dip"
  android:layout_height="300dip"
  android:background="#000000"
/>
But that code doesn't show positions and not in a layered form.
Update : I would like the lines to appear through drawing, not through another picture
 
     
     
     
    