>
> Another thing I am having trouble with though is that in my main activity
> I call:
>
>     requestWindowFeature(Window.FEATURE_NO_TITLE);
>
>     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
>  WindowManager.LayoutParams.FLAG_FULLSCREEN);
>
> but when the application loads I can see for a short while the application
> name
> highlighted at the top of the black screen before the full screen. Anyone
> know
> why this is and how I can make it go away?
>

You see that because your onCreate() hasn't kicked in yet (I am assuming
that you are putting the flags in onCreate()). In my app, asking for
fullscreen activities in the manifest works without showing the title bar
even once.

Thanks

-- 
Raghav Sood
http://www.androidactivist.org/ - Author
http://www.appaholics.in/ - Founder

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

Reply via email to