[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-08-11 Thread Shani
Having the same issue- can hide title bar easily but not Status Bar- did the original author of the question or anyone else figure this out yet? Thanks Shani On Aug 5, 4:38 pm, Lucas roll...@gmail.com wrote: Hello, Did someone make this work? I am having the same issue when making my own

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-08-05 Thread Lucas
Hello, Did someone make this work? I am having the same issue when making my own theme. regards, Lucas On Jun 20, 6:45 pm, vinc...@eklaireur.com vinc...@eklaireur.com wrote: Ok Guys, I did have the same issue i found out my mistake, you have to define the thme within the activity tag

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-21 Thread vinc...@eklaireur.com
Ok Guys, I did have the same issue i found out my mistake, you have to define the thme within the activity tag android:theme=@android:style/Theme.NoTitleBar.Fullscreen V On 11 juin, 14:00, Mark Murphy mmur...@commonsware.com wrote: Shyam Dasgupta wrote: can somebody atleast confirm

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-13 Thread Shyam Dasgupta
i guess this group has grown too large to expect a response from the Android team.. --~--~-~--~~~---~--~~ 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] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread sylpheo
hi, this works fine too (in activity): requestWindowFeature(Window.FEATURE_NO_TITLE); --~--~-~--~~~---~--~~ 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] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread sylpheo
sorry, not for status bar :) just title --~--~-~--~~~---~--~~ 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

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Shyam Dasgupta
Thanks for that response, Mark. Did you try with a custom fullscreen theme in Android 1.5? Yes, if you directly use @android:style/ Theme.NoTitleBar.Fullscreen as the theme for your Activity, you get a fullscreen. But to tailor it to your needs, you'd need a custom theme. If you look at the

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Mark Murphy
Shyam Dasgupta wrote: Did you try with a custom fullscreen theme in Android 1.5? Custom? No. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, $35/Year --~--~-~--~~~---~--~~

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Shyam Dasgupta
right, the title bar can be hidden both by setting flags or using a custom theme with [item name=android:windowNoTitletrue/item] but the status bar is acting differently in 1.5, atleast in my case. On Jun 12, 5:05 pm, sylpheo pierre.lecoin...@gmail.com wrote: sorry, not for status bar :) just

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Desu Vinod Kumar
hi requestWindowFeature(Window.FEATURE_NO_TITLE); by calling these we can hide the title bar i On Fri, Jun 12, 2009 at 5:41 PM, Shyam Dasgupta shyam.dasgu...@gmail.comwrote: right, the title bar can be hidden both by setting flags or using a custom theme with [item

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Shyam Dasgupta
Please do me a favor - let me know if you can make a custom fullscreen theme work in Android 1.5. Just wanted to know if I am the only lone person with this issue. On Jun 12, 5:10 pm, Mark Murphy mmur...@commonsware.com wrote: Shyam Dasgupta wrote: Did you try with a custom fullscreen

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Desu Vinod Kumar
or getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); this.requestWindowFeature(Window.FEATURE_NO_TITLE); like this On Fri, Jun 12, 2009 at 5:47 PM, Desu Vinod Kumar vinny.s...@gmail.comwrote: hi

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Shyam Dasgupta
hi desu, you got it wrong. its about hiding the status bar, and not the title bar. On Jun 12, 5:17 pm, Desu Vinod Kumar vinny.s...@gmail.com wrote: hi requestWindowFeature(Window.FEATURE_NO_TITLE); by calling these we can hide the title bar i On Fri, Jun 12, 2009 at 5:41 PM, Shyam

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread Shyam Dasgupta
hello developers.. anybody out there who can tell me why a custom fullscreen theme doesn't hide the status bar in 1.5 when the same theme goes fullscreen in 1.1? Is this a bug, or has there been any changes in 1.5..? Atleast the docs don't mention any change regarding this On Jun 12,

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-12 Thread peeyush varshney
HI, I am also facing probs with transparent theme.. i tried my theme to keep my activity background transparent.. ?xml version=1.0 encoding=utf-8? resources style name=Mytheme item name=android:windowBackground@android:color/transparent/item item name=android:windowFrame@null/item

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-11 Thread Shyam Dasgupta
can somebody atleast confirm whether they face this issue with 1.5 SDK, please? anybody who can test a fullscreen theme in 1.5 SDK? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: fullscreen doesn't hide Status Bar in Android SDK 1.5 R2

2009-06-11 Thread Mark Murphy
Shyam Dasgupta wrote: can somebody atleast confirm whether they face this issue with 1.5 SDK, please? anybody who can test a fullscreen theme in 1.5 SDK? Fullscreen definitely hides the status bar in 1.5. android:theme=@android:style/Theme.NoTitleBar.Fullscreen -- Mark Murphy (a Commons