moto z /play免root全屏命令大全包括恢复正常
1.电量显示:
adb shell content insert --uri content://settings/system --bind name:s:status_bar_show_battery_percent --bind value:i:1
2.全屏沉浸:
adb shell settings put global policy_control immersive.full=*
3.沉浸状态栏:
adb shell settings put global policy_control immersive.status=*
4.沉浸导航栏:
adb shell settings put global policy_control immersive.navigation=*
5.我们还可以单独控制哪些app不沉浸,例如以下代码设置google即时桌面不沉浸,其他程序沉浸:
adb shell settings put global policy_control immersive.full=apps,-com.google.android.googlequicksearchbox
6.如果想恢复到正常模式,运行下面的代码:
adb shell settings put global policy_control null
完全沉浸导航栏时,某些单个程序需要使用导航栏,可使用以下命令使单个程序不沉浸导航。
1、乐桌面上相机不沉浸导航栏
adb shell settings put global policy_control immersive.navigation=apps,-com.lenovo.launcher,-com.motorola.cameraone
2、nova桌面上相机不沉浸导航栏
adb shell settings put global policy_control immersive.navigation=apps,-com.teslacoilsw.launcher,-com.motorola.cameraone
3、nova桌面高德地图不沉浸导航
adb shell settings put global policy_control immersive.navigation=apps,-com.teslacoilsw.launcher,-com.autonavi.minimap
4、首页不沉浸导航
adb shell settings put global policy_control immersive.navigation=apps,-com.teslacoilsw.launcher,-com.motorola.motodisplay
评论列表(1条)