I have a little problem when applying a bare theme on devices with api> = version 11 My custom buttons get bigger (in height, the width seems to be the same)
It is without a hologram 
this is with their holon 
Can someone tell me what causes this? and if you can save the same button size as without a bare theme?
ps: this is my button:
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="#F000" /> <stroke android:width="1px" android:color="#BB000000" /> <padding android:bottom="7dp" android:left="10dp" android:right="10dp" android:top="7dp" /> <corners android:bottomLeftRadius="5dp" android:bottomRightRadius="5dp" android:topLeftRadius="5dp" android:topRightRadius="5dp" /> <gradient android:angle="90" android:centerColor="#5b5bcd" android:endColor="#6f6fcf" android:startColor="#4747e0" android:type="linear" /> </shape>
and this is how I apply it on my button (i.e. in a linear gyrozonal linear ruler with a weight of 0.8)
<Button android:id="@+id/addplayer" android:layout_width="0px" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginLeft="5dp" android:layout_weight="0.8" android:background="@drawable/blue_button_selector" android:text="Add player" />
Thank you!
source share