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

前端 未结 12 1752
面向向阳花
面向向阳花 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:37

    on rooted devices, i use the following adb command

    adb shell pm disable com.android.systemui
    

    to hide navigation bar permanently. To show it again, run

    adb shell pm enable com.android.systemui
    

    so far it's working fine for me

提交回复
热议问题