tania
tania

Reputation: 1086

Custom shape of a SeekBar in android application

I know it is possible to change the style of the SeekBar in android apps, but is it possible to change the shape of the progress line of a SeekBar?

I would like it to be like that: enter image description here

Any ideas on how to achieve this? :)

Upvotes: 1

Views: 1559

Answers (1)

Tulsi Leathers
Tulsi Leathers

Reputation: 338

Similar to this question here How to make custom seek bar in android?

You're not going to be able to do that with the default slider. You're going to have create a custom view. Here's some resources to get you started.

http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/

http://developer.android.com/training/custom-views/create-view.html

Edited to add this other resource the may help you get the curves you want

Give a semi-circular shape to seekbar

Upvotes: 1

Related Questions