I have implemented my own viewgroup for my application. Using actionbar is not an option for various reasons so in my viewgroup I have my own \"actionbars\" one on top and one i
Just add <item name="android:windowActionModeOverlay">true</item>
to your style.
To use windowActionModeOverlay
with appcompat toolbar,use
<item name="windowActionModeOverlay">true</item>
to your style.
This can also be done programmatically using:
getWindow().requestFeature(Window.FEATURE_ACTION_MODE_OVERLAY);