我想删除ActionBar下的分隔符,已经在这里搜索它并尝试了不同的东西,但没有任何对我有用。
以下是款式,希望你能帮助我。
<style name="ListeningThemeTranslucentActionBar" parent="@style/ListeningTheme">
<item name="android:windowActionBarOverlay">true</item>
<item name="android:actionBarStyle">@style/ListeningTranslucentActionBar</item>
<item name="android:actionBarDivider">@null</item>
</style>
<style name="ListeningTranslucentActionBar" parent="android:Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@android:color/transparent</item>
</style>
答案 0 :(得分:0)
您可能没有在Manifest中应用您的样式。你必须添加
android:theme="@style/ListeningThemeTranslucentActionBar"
在Manifest.xml
中。 (如果已有android:theme
参数,只需将其更改为您的主题。)
此外,this链接可能会有所帮助。