0

I'm creating a gallery activity, and I want to overlay the action bar just like in the normal gallery app, similar to this:

enter image description here

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?

Thomas
  • 1,123
  • 3
  • 13
  • 36

0 Answers0