我正在尝试通过ADB命令启用/禁用飞行模式。
我找到了以下用于启用或禁用飞行模式的adb命令。
adb shell settings put global airplane_mode_on 1
adb shell am broadcast -a android.intent.action.AIRPLANE_MODE
adb shell settings put global airplane_mode_on 0
adb shell am broadcast -a android.intent.action.AIRPLANE_MODE
但是,wifi和蓝牙连接将丢失。 如何在没有wifi和蓝牙的情况下执行飞行模式的aadb
答案 0 :(得分:0)
启动ADB shell:
adb shell
将参数airplane_mode_radios
设置为您想要关闭飞行模式的任何值。可能的值包括cell,bluetooth,wifi,nfc,wimax
。根据您的需求排除bluethooth:
settings put global airplane_mode_radios cell,wifi,nfc,wimax
要删除此设置并将默认设置返回飞行模式,请运行:
delete global airplane_mode_radios
还有一个airplane_mode_toggleable_radios
设置,用于控制在关闭飞行模式后再次启用无线电。参见answer on SO。