I have some code that should center a text in button, but the text is not aligned exactly in the middle. It is located a little at the bottom. How I could fix this?
</style>
<style name="ButtonText">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">34dp</item>
<item name="android:layout_weight">0.5</item>
<item name="android:textColor">#ffffff</item>
<item name="android:gravity">center</item>
<item name="android:layout_margin">3dp</item>
<item name="android:padding">1dp</item>
<item name="android:textSize">26sp</item>
<item name="android:textStyle">bold</item>
</style>
<Button
android:id="@+id/buttonStop"
android:background="@drawable/greenbutton"
style="@style/ButtonText"
android:text="@string/ButtonStop" />