Hi

I am using fullscreen mode, e.g. I do not have any statusbar.

When I click a spinner, which opens the dropdown view, the status bar
is shown for a short second then it hides again. This happens only
when there are a certain amount of items in the dropdown. If its only
about 5 items, the status bar is not shown.

How can I keep the status bar hidden permanently? I'm using my own
DropDownViewResource, do I need to put something in there?

<TextView xmlns:android="http://schemas.android.com/apk/res/android";
        android:id="@+id/spinner_item"
        style="@style/spinner_item_dropdown"
 />


<style name="spinner_item_dropdown">
   <item name="android:layout_width">fill_parent</item>
   <item name="android:layout_height">40dp</item>
   <item name="android:windowNoTitle">true</item>
   <item name="android:windowFullscreen">true</item>
   <item name="android:textSize">16dp</item>
   <item name="android:textColor">@color/black</item>
   <item name="android:gravity">center</item>
</style>

As you can see I've tried android:windowFullscreen without success.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.

Reply via email to