移除AppCompat ActionBar下方的阴影效果

8

如何去掉 Actionbar 底部的阴影?

我正在使用 AppCompat v7 库。


请查看以下链接中更完整的答案:https://dev59.com/SGct5IYBdhLWcg3wPLCB#27203224 希望能解决您的问题。 - ltvie
2个回答

18

这可以与AppCompat一起使用:

<style name="MyAppTheme" parent="Theme.AppCompat.Light">
    <item name="actionBarStyle">@style/MyActionBarTheme</item>
</style>

<style name="MyActionBarTheme" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
    <item name="elevation">0dp</item>
</style>

-4
请在style.xml中添加以下内容:
<style name="MyTheme" parent="Theme.Sherlock">
....
<item name="windowContentOverlay">@null</item>
<item name="android:windowContentOverlay">@null</item>
....


1
还有其他动态实现的方式吗? - Omar Farhat
2
我也使用min-sdk=11的v7版本,但在Eclipse中使用"windowContentOverlay"时出现了"No resource found that matches the given name: attr 'windowContentOverlay'"错误。有什么帮助吗? - Mehmed
问题涉及AppCompat,而不是Sherlock。 - Michiel

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接