Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I hide the android 4.0 mini pc combined bar with code?

I am using the below code, but it is not working.

protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  requestWindowFeature(Window.FEATURE_NO_TITLE);
  this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
share|improve this question
What is "combined bar"? What is "mini pc"? Why is this tagged with an iOS tag (uitabbarcontroller)? – CommonsWare Oct 6 '12 at 13:57

2 Answers

just set android:theme="@android:style/Theme.NoTitleBar.Fullscreen" attribute on your activity in the manifest file. Sometimes programmatic window manipulations can get messy. Try this out.

share|improve this answer
its not working ......\ – sukumar Oct 12 '12 at 4:24
i just tried but its not working in android tablets.... – sukumar Oct 13 '12 at 11:47
go to settings have hide status bar option. – sukumar Nov 11 '12 at 4:00

Go to settings->Display->hide status bar tick that to hide

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.