有没有看到任何关于使用“adb shell”打开Android设备扬声器的命令,好奇有没有方法?
#call phone
adb shell am start -a android.intent.action.CALL -d tel:X-XXX-XXXX
# ******* put speaker on here *******
sleep X
#end call
adb shell input keyevent KEYCODE_ENDCALL
答案 0 :(得分:0)
从adb shell
到set Speakerphone on使用:
adb shell service call audio 35 i32 1
adb shell service call audio 36 i32 1
adb shell service call audio 30 i32 1
adb shell service call audio 29 i32 1
将1
替换为0
以将其设置为关闭。