我正在创建一个图库活动,我希望像普通图库应用一样覆盖操作栏,类似于:
在styles.xml中,我创建了主题:
<style
name="GalleryTheme"
parent="Theme.AppCompat">
<item name="android:windowActionBarOverlay">true</item>
</style>
在Android清单文件中:
<activity
android:name=".Activities.Gallery"
android:label="Gallery"
android:theme="@style/GalleryTheme">
</activity>
然而,这根本没有做任何事情。我有什么遗失的吗?