- 下載ADB并解壓
Windows版本:https://dl.google.com/android/repository/platform-tools-latest-windows.zip
Mac版本:https://dl.google.com/android/repository/platform-tools-latest-darwin.zip
Linux版本:https://dl.google.com/android/repository/platform-tools-latest-linux.zip - 將adb的存放路徑添加進(jìn)環(huán)境變量path中
例如D:\adb\platform-tools
- 進(jìn)入命令行许昨,輸入
adb --version
查看是否安裝成功 - 查看已經(jīng)連接的設(shè)備:
adb devices
1、手機(jī)開啟開發(fā)者模式褥赊,允許ADB調(diào)試
2糕档、電腦上下載ADB包
adb.rar (529.77 KB, 下載次數(shù): 7681)
3、解壓到任意位置拌喉,比如c:\adb
4速那、cmd命令定位到adb目錄,比如:cd c:\adb
5尿背、全屏沉浸:
adb shell settings put global policy_control immersive.full=*
6端仰、沉浸狀態(tài)欄:
adb shell settings put global policy_control immersive.status=*
7、沉浸導(dǎo)航欄:
adb shell settings put global policy_control immersive.navigation=*
8田藐、我們還可以單獨控制哪些app不沉浸荔烧,例如以下代碼設(shè)置TIM不沉浸,其他程序沉浸:
adb shell settings put global policy_control immersive.full=apps,-com.tencent.tim,
9汽久、如果想恢復(fù)到正常模式茴晋,運(yùn)行下面的代碼:
adb shell settings put global policy_control null
10、若要將導(dǎo)航欄完全隱藏(上劃不會喚出):
adb shell wm overscan 0,0,0,-210 //如果無效 可以修改數(shù)字大小 或者方向
四個數(shù)字分別表示 左回窘、上诺擅、右、下距邊緣的距離(根據(jù)需求調(diào)整)
11啡直、恢復(fù)
adb shell wm overscan 0,0,0,0