Reputation: 623
I need to do the actionbar like the below image, I have marked the shadow area
Here can see the small shadow so how can I add this shadow to the action bar?
Thanks in advance.
Upvotes: 1
Views: 1212
Reputation: 5016
If your using Android 5.0 or support library, you should use setElevation
getSupportActionBar().setElevation(2);
If you still using ActionBarSherlock, you should change your theme style like this:
<style name="MyAppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">ANY_NUMBER</item>
</style>
Upvotes: 2