Re: [android-developers] how to make real full screen app on android 4.0.3?

2012-04-24 Thread Baodong Chen
在 2012年4月22日星期日UTC+8下午4时23分48秒,Slay3r写道: Oops typo in my previous post should be; ActionBar actionbar = getActionBar(); actionbar.hide(); thats as close to fullscreen as you can get on a tablet i believe.. thanks , i will try ! Sent from my ASUS Eee Pad Baodong Chen

Re: [android-developers] how to make real full screen app on android 4.0.3?

2012-04-22 Thread N
try in activity class ActionBar actionbar = new ActionBar(); actionbar.hide(); Sent from my ASUS Eee Pad Baodong Chen chenbdche...@gmail.com wrote: hi,all: i have an app on android ics for pad,and i want my app to cover the whole screen,but

Re: [android-developers] how to make real full screen app on android 4.0.3?

2012-04-22 Thread N
Oops typo in my previous post should be; ActionBar actionbar = getActionBar(); actionbar.hide(); thats as close to fullscreen as you can get on a tablet i believe.. Sent from my ASUS Eee Pad Baodong Chen chenbdche...@gmail.com wrote: 在

[android-developers] how to make real full screen app on android 4.0.3?

2012-04-21 Thread Baodong Chen
hi,all: i have an app on android ics for pad,and i want my app to cover the whole screen,but android:theme=@android:style/Theme.Black.NoTitleBar.Fullscreen and setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION); DO NOT work for me...help! -- You received

Re: [android-developers] how to make real full screen app on android 4.0.3?

2012-04-21 Thread Mark Murphy
You cannot get rid of the system bar on a tablet, if that is what you are trying to do. On Sat, Apr 21, 2012 at 7:15 AM, Baodong Chen chenbdche...@gmail.com wrote: hi,all: i have an app on android ics for pad,and i want my app to cover the whole screen,but

Re: [android-developers] how to make real full screen app on android 4.0.3?

2012-04-21 Thread Baodong Chen
在 2012年4月21日星期六UTC+8下午7时32分29秒,Mark Murphy (a Commons Guy)写道: You cannot get rid of the system bar on a tablet, if that is what you are trying to do. --yes,i want to do that! but viddo player can do it?how can i? On Sat, Apr 21, 2012 at 7:15 AM, Baodong Chen chenbdche...@gmail.com