Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have bunch of buttons within linear layout. But there is spaces buttons. I set padding as 0 but there no change. There is someone who already had the same problem at http://www.mail-archive.com/android-developers@googlegroups.com/msg51104.html but no answer at there. Can you plese help me.

share|improve this question

2 Answers

up vote 14 down vote accepted

Try to play with android:layout_margin attribute. For instance, to reduce space on the left/right side (assuming you have a horizontal set of buttons) you can do smth like this:

<Button
    android:layout_marginLeft="-3dip"
    android:layout_marginRight="-3dip"
    ... />
share|improve this answer
Thank you very much. That's also worked perfectly. – csfcse Dec 6 '10 at 15:03
thanks. good solution – breceivemail Sep 12 '11 at 6:26
Works for padding aswell on some layouts! – Magakahn Aug 27 '12 at 17:28

I'll refer you to a previous answer I gave on this:

If you're meaning you want them to be pushed to the edge, pixel for pixel, you'll need to use your own 9-patch for the button background, as the default one in Android has a few extra pixels around the border of its 9-patch background. For an example of this, look at the file in your SDK folder under:

platforms/android-8/data/res/drawable-hdpi/btn_default_transparent_normal.9.png

For example, this is what I get with the default:

alt text

And with a custom 9-patch I had made earlier:

alt text

share|improve this answer
Thank you. I add background color to my buttons and then spaces are gone. It was really help for me. – csfcse Dec 6 '10 at 15:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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