Hide Status bar on Android Ice Cream Sandwich

后端 未结 6 1013
醉梦人生
醉梦人生 2020-12-23 18:14

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

6条回答
  •  [愿得一人]
    2020-12-23 18:49

    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);
    

提交回复
热议问题