adb获取手机设备蓝牙&热点&wifi状态并操作的笔记
短信预约 -IT技能 免费直播动态提醒
adb获取手机设备蓝牙&热点&wifi状态并操作的笔记
在Windows上查找字符串使用的是findstr,在linux上使用的是grep
1 #获取状态 2 3 $ adb shell ps | findstr wifi 4 #output中出现wpa_supplicant说明wifi处于开启状态,如果出现hostapd说明热点处于开启状态 5 $ adb shell dumpsys wifi | findstr curState 6 #output中出现Active说明wifi处于开启状态 7 8 9 10 #操作改变状态11 方法1:12 $ adb shell svc wifi enable13 #enable是打开,disable是关闭 如果output是killed,说明没有root权限,adb shell之后还要加su权限14 方法2:15 $ adb shell am start -n com.android.settings/.wifi.WifiSettings 或者 adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings16 $ adb shell input keyevent 2017 $ adb shell input keyevent 2318 #不一定适用所有机型,需要事先测试19 方法3:20 adb shell am broadcast -a io.appium.settings.wifi --es setstatus enable21 #这个是调用了appium的端口发布全局广播,打开wifi,使用后会有弹窗询问是否允许,需要点击掉弹窗
热点
1 #获取状态 2 3 在获取wifi状态中有提到 4 5 6 7 #操作改变状态 8 方法1: 9 adb shell am start -n com.android.settings/.TetherSettings10 adb shell input keyevent 2011 adb shell input keyevent 6612 #不一定适用所有机型,需要事先测试13 方法2:14 #打开热点15 adb shell service call connectivity 24 i32 016 #关闭热点17 adb shell service call connectivity 25 i32 018 此操作需要root权限 ; 末尾的0是传递的参数,0是wifi网络共享,1是usb网络共享,2是蓝牙网络共享19 更多信息可参考:https://android.stackexchange.com/questions/111226/using-adb-shell-how-i-can-disable-hotspot-tethering-on-lollipop-nexus-5
蓝牙
1 #获取状态 2 $ adb shell settings get global bluetooth_on 3 output是0或1,0代表关闭,1反之 4 $ adb shell dumpsys bluetooth_manager | grep enabled 5 output是true或者false,说明开启或关闭 6 7 #改变操作状态 8 方法1: 9 $ adb shell settings put global bluetooth_on 110 #末尾设置为0代表关闭,1反之11 方法2:12 $ adb shell svc bluetooth enable13 #末尾设置为enable为开启,disable反之(这个方法输入命令后并不立即生效,重启设备才生效)14 方法3:15 $ adb shell am start -a android.bluetooth.adapter.action.REQUEST_ENABLE16 #目前只能从关闭状态转为开启状态,并且运行指令后会有弹窗提示是否开启蓝牙17 方法4:18 adb shell am start -a android.settings.BLUETOOTH_SETTINGS19 adb shell input keyevent 2020 adb shell input keyevent 2021 #同之前的启动方式,不一定适用所有机型22 方法5:23 adb shell am broadcast -a io.appium.settings.bluetooth --es setstatus enable24 #这个是调用了appium的端口发布全局广播,打开蓝牙,打开后会有弹窗询问允许,脚本中需要添加点击掉弹窗的方法
来源地址:https://blog.csdn.net/weixin_45393723/article/details/129964252
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341