我正在通过对我的活动使用以下样式来使用叠加操作栏
样式.xml
<style name="CustomActionBarTheme" parent="@style/Theme.AppCompat" >
<item name="windowActionBarOverlay">true</item>
<item name="android:background">#00f3ead8</item>
<item name="android:windowBackground">@drawable/logo1024</item>
</style>
我只有一个要始终显示的菜单项
菜单.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:yourapp="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menusettings"
android:orderInCategory="100"
android:icon="@drawable/settings"
android:title="Menu"
yourapp:showAsAction="always"
/>
<menu>
图标,即 settings.png 被 8dp 填充但我希望顶部和底部的填充为 0,以便它覆盖整个操作栏
请在项目截止日期前帮助我解决深陷困境提前致谢