[android-developers] Re: Fullscreen (no title no status bar) - UI bug in Android?

2010-01-14 Thread Matt Hall
I am having the same problem - did you ever figure out a resolution to this? Or did you file a bug? Seems like a bug since you can reproduce it with this example you've provided. Thanks, Matt On Jan 7, 8:36 am, Marc Reichelt mcreich...@googlemail.com wrote: Hi there! I am using the fullscreen

[android-developers] Re: Fullscreen (no title no status bar) - UI bug in Android?

2010-01-14 Thread Nerdrow
I just tried this on a Droid w/2.0.1 and don't have any issues. Is this happening in the emulator or on an actual device? On Jan 14, 2:09 pm, Matt Hall matt.h...@gmail.com wrote: I am having the same problem - did you ever figure out a resolution to this? Or did you file a bug? Seems like a

[android-developers] Re: Fullscreen (no title no status bar) - UI bug in Android?

2010-01-14 Thread Philip
I used this two lines of code to remove the title bar right after calling super.OnCreated and never experienced problems in 1.6 or 2.0 (emul): requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags (WindowManager.LayoutParams.FLAG_FULLSCREEN,

[android-developers] Re: Fullscreen (no title no status bar) - UI bug in Android?

2010-01-14 Thread Philip
I forgot to add that I am using a GLSurfaceView as the view attached to my activity. On Jan 14, 3:14 pm, Philip philip.dese...@gmail.com wrote: I used this two lines of code to remove the title bar right after calling super.OnCreated and never experienced problems in 1.6 or 2.0 (emul):      

[android-developers] Re: Fullscreen (no title no status bar) - UI bug in Android?

2010-01-14 Thread Matt Hall
Some more information, after reading this thread: http://groups.google.com/group/android-developers/browse_thread/thread/2de77043f32835aa/315d393bb8334db5 we came to the conclusion that it was because our top view can accept focus that is causing the problem (there does appear to be some weirdness