http://stackoverflow.com/questions/12246388/remove-shadow-below-actionbar/12246593#12246593
<style name="MyAppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
</style>
getSupportActionBar().setElevation(0);
For Android 5.0, if you want to set it directly into a style use:
and for Support library compatibility use:
Example of style for a AppCompat light theme:
Then apply this custom ActionBar style to you app theme:
For pre 5.0 Android, add this too to your app theme:
|