Firstly, a few words about the application: the minimum level is 16, I use DrawerLayout (with an indicator) and changed the background of my ActionBar.
When I click on the "Home" button to open the box, a blue press appears on the image and indicator of the box, which I would like to delete. I tried setting the selectableItemBackground in the styles to transparency, almost everywhere I could think of, but that doesn't change anything. Anyone have a solution?
Here is an image of this effect that I would like to remove:

Here is the styles.xml part for the ActionBar that I am using:
<style name="ActionBar.Solid.Bnp" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"> <item name="android:background">@drawable/action_bar_green</item> <item name="android:titleTextStyle">@style/ActionBar.Title</item> <item name="android:actionBarItemBackground">@null</item> </style>
and finally drawable is used for the background .
source share