I am working on an Android application that uses a compatibility package from Google to get snippets, etc. in Android 2.x. The action bar was created based on a Google example. A white “shadow” was placed underneath using
<item name="android:windowContentOverlay">@drawable/actionbar_shadow</item>
However, the object under the action bar (fragment) contains a ListView with the following property
android:paddingTop="5dp"
This causes the white shadow to also reduce 5dp:

Is there a way to keep the registration in the ListView while keeping the shadow in the right place?
android android-layout android-actionbar
ergoen
source share