Is there a way to hide the system/navigation bar in Android ICS

前端 未结 12 1772
面向向阳花
面向向阳花 2020-12-01 01:02

I\'d like to extend the discussion regarding hiding of the system/navigation bar at the bottom of the screen on Android Ice Cream Sandwich (4.0 and up) tablet devices.

12条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-01 01:32

    To hide status bar and navigation bar in android ics use

    LinearLayout layout = (LinearLayout)findViewById(R.id.layout);
    layout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
    

提交回复
热议问题