adb shell dumpsys netstats | grep -E 'iface=wlan.*networkId'(不需要root权限) 10、打开wifi adb shell 'svc wifi enable' 11、关闭wifi adb shell 'svc wifi disable' 12、打开数据 adb shell 'svc data enable' 13、关闭数据 adb shell 'svc data disable' 14、开启热点设置 adb shell am start -...
--SVC命令:这个脚本在/system/bin目录下,这个命令可以用来控制电源管理,wifi开关,数据开关(就是上网流量) 1.屏幕相关: svc power stayon [true|false|usb|ac] --设置屏幕的常亮,true保持常亮,false不保持,usb当插入usb时常亮,ac当插入电源时常亮 2.数据流量相关: svc data disable -- 这个命令可以关闭数据连...
1、adb控制移动数据关闭:adb shell svc data disable开启:adb shell svc data enable2、WiFi开关打开手机WIFI:adb shell svc wifi enable关闭手机WIFI:adb shell svc wifi disable3、下拉显示状态栏:adb shell service call statusbar 1 收缩隐藏状态栏:adb shell service call statusbar 2 自动重启adb reboot显示...
adb shell svc dataenable# 打开数据流量adb shell svc data disable# 关闭数据流量 1. 2. 3. 设置代理 如果你需要设置 HTTP 代理,可以使用以下命令: adb shell settings put global http_proxy<PROXY_IP>:<PROXY_PORT> 1. 例如: adb shell settings put global http_proxy192.168.1.100:8080 1. 要清除代理...
adb shell am start [options] <INTENT> adb shell am start -n {包(package)名}/{包名}. start an Activity: am start [-D] <INTENT> -D: enable debugging send a broadcast Intent: am broadcast <INTENT> start an Instrumentation: am instrument [flags] <COMPONENT> ...
adb shell settings put global airplane_mode_on 0 1、adb控制移动数据 关闭:adb shell svc data disable 开启:adb shell svc data enable 2、WiFi开关 打开手机WIFI:adb shell svc wifi enable 关闭手机WIFI:adb shell svc wifi disable 3、 下拉显示状态栏: ...
adb shell dumpsys notification 获得手机里面某个apk的应用信息、版本信息 adb shell dumpsyspackage<packagename>adb shell dumpsys deviceidle whitelist 查看wifi密码,root权限 adb shell cat/data/misc/wifi/*.conf 读取系统的各种文件配置信息,比如/data/anr/traces.txt ...
TiTleHow修改电量adb shell dumpsys battery set level 100查看蓝牙信息adb shell dumpsys bluetooth_ma...
adb shell svc wifi enable •关闭 WiFi: adb root adb shell svc wifi disable 若执行成功,输出为空; 若未取得 root 权限执行此命令,将执行失败,输出 Killed。 4.12 安全相关命令 4.12.1 启用/禁用 SELinux 启用SELinux adb root adb shell setenforce 1 禁用SELinux adb root adb shell setenforce 0 4.12...
例如:adb -s127.0.0.1:62001shell 这样就进入了模拟器的Shell界面了。 5).关闭服务 adb kill-server 6).设置监听TCP/IP的端口 adb tcpip5555 7).断开连接 adb disconnect127.0.0.1:62001 8).关机与重启 adb reboot#设备重启adb shutdown#设备关机