There is an array 'a' which holds the points b/w which lines have to be drawn:
float[] a = {0.0f, 1.2f, 3.4f, -9.87f, 65.4f, 0.0f, 567.9f};
canvas.drawLines(a,mypaint);
Now what drawLines(float[] pts, Paint paint) does is that it draws a line b/w a[0], a[1] and a[2], a[3] and then the next line b/w a[4], a[5] and a[6], a[7].
now I want a line b/w a[2], a[3] and a[4], a[5] as well.
So how to do that? Will drawLines (float[] pts, int offset, int count, Paint paint) help?? i dont understand the offset and count parameters? I wanted to use offset = -2 as parameter so that I a[2],a[3] are read twice.