怎样使用ADB命令强制关闭蓝牙!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样使用ADB命令强制关闭蓝牙!相关的知识,希望对你有一定的参考价值。
//命令行测试蓝牙1. 命令行控制蓝牙开关
adb shell
cd /data/data/com.android.providers.settings/databases
sqlite3 settings.db
select * from secure where name="bluetooth_on"; (查看是否打开)
update secure set value=1 where name="bluetooth_on"; (这里的value=1是打开,0是关闭)
select * from secure where name="bluetooth_on"; (确认是否更改成功)
reboot <重启手机生效> 参考技术A adb shell service call bluetooth_manager 6 #打开蓝牙
adb shell service call bluetooth_manager 8 #关闭蓝牙
以上是关于怎样使用ADB命令强制关闭蓝牙!的主要内容,如果未能解决你的问题,请参考以下文章