[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

[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 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): > >         requestWindowFeat

[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, WindowMan

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

2010-01-14 Thread Matt Hall
Our problem is occurring on a devices running both 1.6 and 2.0 (haven't tried it on others). We've got a pretty complicated view system though so it still could definitely be our fault, the end result is exactly what's in the screenshot Marc posted though. On Jan 14, 5:20 pm, Nerdrow wrote: > I j

[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 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 bug since you can re

[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 wrote: > Hi there! > > I am using the fullscreen mode in my application