8

Is it possible to remove the shadow below the Actionbar?

I am using the AppCompat v7 library.

Xaver Kapeller
  • 49,491
  • 11
  • 98
  • 86
Cristian
  • 514
  • 4
  • 21
  • look at more complete answer in http://stackoverflow.com/a/27203224/1966662 hope solve your problem – ltvie Oct 23 '15 at 13:51

2 Answers2

18

This works with 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>
Damnum
  • 1,839
  • 16
  • 35
-4

Add this in style.xml :

<style name="MyTheme" parent="Theme.Sherlock">
....
<item name="windowContentOverlay">@null</item>
<item name="android:windowContentOverlay">@null</item>
....

BSK-Team
  • 1,750
  • 1
  • 19
  • 37