Hello all,

I've noticed that if I disable the title bar in my Activity's onCreate
method like so:

        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);

any AlertDialogs with list that require a scroll down (contents don't
fit the page) will cause the title bar to display momentarily.  I am
managing these dialogs in the Activity in the typical fashion (using
onCreateDialog() and onPrepareDialog()).

Seems to happen in 1.5, 1.6, and 2.0

Is there a way to fix this?

Thanks,
Steve

-- 
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

Reply via email to