AngelJanniee
AngelJanniee

Reputation: 623

Android Action bar shadow

I need to do the actionbar like the below image, I have marked the shadow area enter image description here

Here can see the small shadow so how can I add this shadow to the action bar?

Thanks in advance.

Upvotes: 1

Views: 1212

Answers (1)

heloisasim
heloisasim

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

Related Questions