如何通过adb接听电话

时间:2012-05-04 03:16:16

标签: android service android-intent adb

我可以通过任何adb命令接听电话吗?我知道您可以通过“adb shell service call phone 2 s16”+15084157509“拨打号码。”

电话服务可以接听电话,还是可以发送一些adb命令来操纵活动?

非常感谢

5 个答案:

答案 0 :(得分:3)

adb shell输入keyevent KEYCODE_CALL

答案 1 :(得分:1)

致电TelephonyManager.answerRingingCall()使用adb shell service call phone 5命令。

答案 2 :(得分:0)

对我有用:

 adb shell input keyevent 5

答案 3 :(得分:-2)

在远端设置以下属性以在2秒内自动应答来电

adb shell setprop persist.sys.tel.autoanswer.ms 2000

要关闭自动接听,

adb shell setprop persist.sys.tel.autoanswer.ms 0

答案 4 :(得分:-3)

adb -s emulator-5554 shell am start -a android.intent.action.CALL -d tel:555-5555