vinc3m1 / android-segmentedradiobutton

Android implementation of iPhone's segmented control
485 stars 160 forks source link

Center Text #6

Open raedhamam opened 12 years ago

raedhamam commented 12 years ago

After changing the drawables for button backgrounds, the text is not centered inside the button.

StephenFerdinand commented 11 years ago

For some reason the paddings aren't zero. Set the padding left and right to zero and make the gravity centered on every button

in xml: android:paddingLeft="0dp" android:paddingRight="0dp" android:gravity="center"

This should solve it!