In android, the notification bar at the top has a shadow most of the time. However, sometimes, such as when an app has it's title-bar showing, or in some other cases (such as in the twitter app or the market) that shadow effect is gone. My guess is that the shadow is supposed to be there when the content underneath can scroll.

In my app, however, the content underneath can't scroll, and I think the shadow looks bad on the top part of my logo.

Does anyone know how to disable it?

link|improve this question

1  
You might consider posting a screenshot or two demonstrating what you are seeing. – CommonsWare Jun 6 '10 at 15:24
feedback

1 Answer

up vote 23 down vote accepted
<!-- Variation on the Light theme that turns off the title -->
<style name="Theme.IOSched" parent="android:style/Theme.Light">
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowContentOverlay">@null</item>
</style>

The android:windowContentOverlay is your shadow, and setting it to @null in your theme will eliminate it. You can see this in action in the Google I|O 2010 conference app, which uses many of the same UI conventions as does the new Twitter app. However, right now, the Twitter app has not yet been open-sourced, which is why I point you to the I|O app. The code fragment above is from that app's styles.xml resource.

link|improve this answer
1  
Good call. And thanks for the IO app pointer, that'll be really helpful. – defrex Jun 6 '10 at 18:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.