tags:

views:

25

answers:

1

I am drawing several lines on a canvas using drawline, the lines are semi transparent (their paint has an alpha value <255) only problem is that the point at which they cross creates a dot of less transparent color (obviously) is there a simple way to avoid this?

+1  A: 

You can create a Path and add your lines to the Path. This will prevent the "problem" you are seeing.

Romain Guy