Re: [android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-23 Thread Mark Murphy
I cannot reproduce your problem. Here is a sample project with your manifest settings and FULLSCREEN call, and I do not see the behavior you cite: http://misc.commonsware.com/GalaxyTabList.zip On Fri, Jan 21, 2011 at 11:04 AM, guich guiha...@gmail.com wrote: Hi Mark, How are you? How was

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-23 Thread jtoolsdev
A little off topic but Samsung still needs to release a skin for the Galaxy tablet that has the Google API in it. I think most if not all Galaxy tablets available have the API but the skin doesn't. On Jan 21, 5:47 am, guich guiha...@gmail.com wrote: Hi, I'm running our application on galaxy

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Yahel
Seems like you are missing the fullscreen bit of the syntax : android:theme=@android:style/Theme.NoTitleBar.Fullscreen Yahel -- 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: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread guich
Hi, Pardon me, i forgot that i set the fullscreen at runtime, just before showing the application's ui: if (fullscreen) getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); thanks guich -- You received this message because

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread guich
Oh yeah, this approach works fine for all other Android devices. I saw this problem only on Galaxy. -- 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

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread guich
Hi, This seems to be a bug in Froyo or in the Galaxy Tab. I just found that if you put he .Fullscreen property, the problem is gone. However, if you use the code to programatically set the fullscreen during runtime, the application behaves strangely. For example, when i run the app and the bug

Re: [android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Mark Murphy
On Fri, Jan 21, 2011 at 10:17 AM, guich guiha...@gmail.com wrote: This seems to be a bug in Froyo or in the Galaxy Tab. I just found that if you put he .Fullscreen property, the problem is gone. However, if you use the code to programatically set the fullscreen during runtime, the application

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread guich
Hi Mark, How are you? How was Christmas and the new year? :-) A simple code will be very dificult for me. However, i can provide two apks that would reproduce the problem. But, basically, when the app loads, at the activitie's onCreate, i call the if (fullscreen) // now set in the

Re: [android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Mark Murphy
On Fri, Jan 21, 2011 at 11:04 AM, guich guiha...@gmail.com wrote: Is the apk enough to help? Not really, but I'll see if I have time on Monday to toss a test case together. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Hari Edo
Are you doing all your setFlags() before inflating the intent? I'm not sure but I think that's a requirement. On Jan 21, 9:29 am, guich guiha...@gmail.com wrote: Hi, Pardon me, i forgot that i set the fullscreen at runtime, just before showing the application's ui:       if (fullscreen)

[android-developers] Re: another problem with Galaxy Tab and fullscreen

2011-01-21 Thread Hari Edo
* I meant inflating your content view, not your intent. On Jan 21, 9:29 am, guich guiha...@gmail.com wrote: Hi, Pardon me, i forgot that i set the fullscreen at runtime, just before showing the application's ui:       if (fullscreen)