我可以通过任何 adb 命令接听电话吗?我知道你可以通过“adb shell service call phone 2 s16”+15084157509来拨打一个号码。
电话服务可以接听电话还是我可以发送一些 adb 命令来操纵活动?
非常感激
我可以通过任何 adb 命令接听电话吗?我知道你可以通过“adb shell service call phone 2 s16”+15084157509来拨打一个号码。
电话服务可以接听电话还是我可以发送一些 adb 命令来操纵活动?
非常感激
adb shell 输入 keyevent KEYCODE_CALL
调用TelephonyManager.answerRingingCall()
使用adb shell service call phone 5
命令。
这对我行得通:
adb shell input keyevent 5
在远端设置以下属性以在 2 秒内自动接听来电
adb shell setprop persist.sys.tel.autoanswer.ms 2000
要关闭自动应答,
adb shell setprop persist.sys.tel.autoanswer.ms 0
adb -s emulator-5554 shell am start -a android.intent.action.CALL -d 电话:555-5555