我没有使用ActionBarSherlock。
我将android:windowContentOverlay添加到我的styles.xml中,但仍然没有阴影。
styles.xml:
<style name="MyAppActionBarTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@drawable/drawer_shadow</item>
</style>
AndroidManifest:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:theme="@style/MyAppActionBarTheme" >
我错过了什么?
我是否可以通过编程方式添加ActionBar Shadow?