I ran into this problem with lollipop, for some reason the default button style has this dark effect
decided to do this by doing this style:
<style name="ButtonStyle" parent="Widget.AppCompat.Button.Borderless"> <item name="android:background">@drawable/trans</item> </style>
assigning it to a button:
<Button .... style="@style/ButtonStyle" />
Here's how to look with and without style:

source share