I'm creating a gallery activity, and I want to overlay the action bar just like in the normal gallery app, similar to this:
In styles.xml, I created the theme:
<style
name="GalleryTheme"
parent="Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
</style>
And in the Android manifest file:
<activity
android:name=".Activities.Gallery"
android:label="Gallery"
android:theme="@style/GalleryTheme">
</activity>
However this didn't do anything at all. Is there anything I'm missing?