What happened to windowContentOverlay in Android API 18?

android, android-4.3-jelly-bean, android-actionbar

Solution

This is officially a bug and will be fixed for next platform release: https://code.google.com/p/android/issues/detail?id=58280

UPDATE: This seems to be fixed on API level 19

Problem

After upgrading my phone to Android 4.3 I noticed the shadow below the actionbar is not showing anymore. In my app I've got a custom shadow using `windowContentOverlay`: ``` <item name="android:windowContentOverlay">@drawable/shadows_bottom</item> ``` It's always been showing but now it's gone on API 18. Removing that line from the theme doesn't change anything. while on other API versions it shows a default slight shadow. Anyone else has noticed that issue?

Original source