Button text vertical alignment is off in Android
Try this:
android:includeFontPadding="false"
It helped me with a similar problem.
If you are building your view programmatically, use this:
button.setIncludeFontPadding(false);
That worked for me:
android:gravity="fill_vertical"
Hope it helps!