I\'m working in a launcher for Android ICS but I have a problem with tablets.
I can\'t hide the status bar. I have try it in Android 2.3.X and it\'s ok. The problem
To hide status bar and navigation bar in android 4.0, we should use code below:
LinearLayout layout = (LinearLayout)findViewById(R.id.layout); layout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);