Possible Duplicate:
Android SeekBar thumb gets clipped/cut off

I was doing a custom seekbar, following this tutorial: http://www.mokasocial.com/2011/02/create-a-custom-styled-ui-slider-seekbar-in-android/

But when I put the seek thumb either at the begining or at the end of the bar, its edge gets cut, like this: http://s2.postimage.org/d9dqrrms/myseekbar.png

I've done exactly what the tutorial says (just changed the gradient color). What's wrong?

link|improve this question
Try this : anddev.org/seekbar_progressbar_customizing-t6083.html Maybe helpful for you. – Uttam Oct 7 '11 at 16:46
Wow, and I thought I had searched enough. Yes, seems duplicated, sorry. Now everything works fine with these SeekBar properties: android:thumbOffset="9px" android:paddingRight="9px" android:paddingLeft="9px". My thumb is 18px width, so I put 9px offset and padding. Thank you all for your help. – Sergio Oct 7 '11 at 18:54
feedback

closed as exact duplicate by eldarerathis, Oded, sarnold, Jeff Atwood Oct 8 '11 at 16:31

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

Have you tried setting the thumb offset for the thumb drawable?

android:thumbOffset="-1px"
link|improve this answer
Yes! Thank you. The only problem is that now the blue background exceeds the thumb, like this s2.postimage.org/elxttllw/myseekbar2.png Is there something to do with that? Still, I'm happy its edges aren't cut anymore. – Sergio Oct 7 '11 at 18:19
feedback

Try changing the left and right padding for the seekbar instead of the thumb offset that should do what you want it to do.

android:paddingLeft="1px" 
android:paddingRight="1px"
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.