adb还原恢复:
adb shell "settings delete global captive_portal_use_https"
=====================================================================================================================
前提:无需解锁、无需ROOT!!!
1、手机打开“开发者选项/模式”,开启“USB调试”;
2、电脑安装好自己的手机驱动;
3、手机以“USB调试”连接电脑。
=====================================================================================================================
一、adb工具去掉wifi感叹号
◆将附件里名称中含有adb的文件,和fastboot.exe复制到 c:/windows/system32目录
◆将附件里名称中含有adb的所有文件复制到 c:/windows/system目录
设置path变量值:C:\Windows\System32
电脑上运行cmd命令(键盘上“微软徽标“键+“R”键),输入命令(即以“adb”开头的那段英文)按回车确认,或者下载附件,解压,然后在解压后的文件夹里里按住Shift键的同时右键点击“在此处打开命令窗口”,输入命令按回车确认(推荐后者)。
1、针对Android5.0-6.0
①.完全屏蔽网络检查功能,最简单快速,但是就没有办法提示wifi登录(不推荐):
adb shell "settings put global captive_portal_detection_enabled 0"
还原恢复:
adb shell "settings put global captive_portal_detection_enabled 1"
或
adb shell "settings delete global captive_portal_detection_enabled"
②.用国内的服务器替换掉google的服务器:
adb shell "settings put global captive_portal_server noisyfox.cn"
或
adb shell "settings put global captive_portal_server captive.v2ex.co"
还原恢复:
adb shell "settings delete global captive_portal_server"
2、针对Android7.0-7.1.0
①.禁用https(不推荐):
adb shell "settings put global captive_portal_use_https 0"
还原恢复:
adb shell "settings put global captive_portal_use_https 1"
或
adb shell "settings delete global captive_portal_use_https"
②.用国内的服务器替换掉google的服务器:
adb shell "settings put global captive_portal_https_url https://www.noisyfox.cn/generate_204"
或
adb shell "settings put global captive_portal_use_https 0"
adb shell "settings put global captive_portal_http_url http://www.noisyfox.cn/generate_204"
或
adb shell "settings put global captive_portal_https_url https://captive.v2ex.co/generate_204";
或
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204;
者把上面的https://captive.v2ex.co/generate_204
改成 https://204.io/generate_204
或者 https://google.cn/generate_204 (这个没试过,上面两个我试过都行的)
注意:这行命令最后有个分号,也要打进去。
还原恢复:
adb shell "settings delete global captive_portal_use_https"
二、adb隐藏状态栏/导航栏
此方法无痛无害操作简单 5.0 、6.0、7.0的系统都支持。
1.首先安装手机驱动,论坛有楼主就不提供了。保证自己的手机选择MTP能正常连接上电脑
2.进入 手机设置——关于手机——打开开发者模式(未开启的轻巧内部版本号直到提示开启)
——开发者模式——打开usb调试模式
3.下载下面的附件解压出来,在adb文件夹内按shift+右键会出现“在此处打开命令窗口”,左键选择 ps:本人电脑系统win10
4.手机连接电脑等待手机正常连接电脑
5.将下列你想实现的方式的代码输入并按enter确认
①全屏沉浸模式(包括状态栏和虚拟按键):
adb shell settings put global policy_control immersive.full=*
②沉浸状态栏:
adb shell settings put global policy_control immersive.status=*
③沉浸导航虚拟按键(隐藏后底部上划可以呼出):
adb shell settings put global policy_control immersive.navigation=*
④实现指定APP沉浸
adb shell settings put global policy_control immersive.full=com.jingdong.app.mall,com.thestore.main,com.baidu.BaiduMap
=号后面是app的包名,我写了3个,京东 1号店 百度地图,需要加其它的依此类推;
恢复正常模式(如果隐藏了状态栏或者虚拟按键但是又不想用了):
adb shell settings put global policy_control null
=====================================================================================================================
写在后面:上述方法都是自己本人亲测有效,而且隐藏之后各界面都可以从底部上划呼出。
输入法使用正常,各APP皆能进入 沉浸虚拟按键。无后遗症。
原文地址:https://www.cnblogs.com/CS-zhanglu/p/9492574.html