Decrease text padding inside the button

Is it possible to reduce the text padding inside a regular Android button to reduce the width of the button?

Of course, all text should still be visible.

+5
source share
2 answers

The “regular” Android button varies between themes, but you probably want to define a custom style for the button that is inherited from your button selection.

+2
source

The attribute android:minHeightand is android:minWidthalready set to the button. Make them 0dpor 1dpto make the background suitable for the text.

+10
source

All Articles