I'm using a Toolbar
in my app and am inflating it with a menu.
I have a issue here because the ripple effect is automatically added to the button but the left most button's ripple effect is cut off by the boundary of the menu area.
You can see the ripple expand but it is then but off on the left side.
Any idea how to remedy this issue?
I came across this too, after playing around I found our custom ThemeOverlay
had its background set.
Try removing android:background
from your Toolbar style and theme.
See below I commented out: <item name="android:background">@color/toolbar</item>
. It works as expected after that.
<style name="MyTheme.Overlay"
parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:textColorPrimary">@color/text_primary</item>
<item name="android:textColorSecondary">@color/text_secondary</item>
<item name="android:windowBackground">@color/background</item>
<!--<item name="android:background">@color/toolbar</item>-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/toolbar</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/toolbar</item>
<!-- colorAccent is used as the default value for colorControlActivated,
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
</style>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With