goodm
goodm

Reputation: 7295

Android - Draw lines with Gradient

I drawing a lines from point to point with gradient. To everything looks nice I using rounded caps between them. Problem is that caps are only in one colour. There is possibility to paint them separately or force drawing to do it right?

Or maybe just draw a dot between them?

enter image description here

I found solution. Like I write before I just gonna draw my own Points between the lines and put there whatever colour I need.

Upvotes: 2

Views: 1928

Answers (1)

Daniel
Daniel

Reputation: 23359

You should use the GradientDrawable with the LINE shape,

Documentation: http://developer.android.com/reference/android/graphics/drawable/GradientDrawable.html

Upvotes: 2

Related Questions