Search code examples
androidlayoutwidthpaddingseekbar

how to make android seekbar full width in api 17 or above?


I want to make seekbar full width with no padding.

I've seen this answer How to make SeekBar take up full width of parent

but in api 17 and above it doesn't work. there is a padding in left and right of seekbar. how do i remove this padding?

enter image description here


Solution

  • I just set padding at run time and it's OK now!

    musicSeekbar.setPadding(0,0,0,0);