10

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

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

非常感激

4

5 回答 5

4

adb shell 输入 keyevent KEYCODE_CALL

于 2014-09-11T17:26:07.203 回答
4

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

于 2014-09-23T05:18:06.930 回答
1

这对我行得通:

 adb shell input keyevent 5
于 2018-10-10T08:22:01.050 回答
-2

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

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

要关闭自动应答,

adb shell setprop persist.sys.tel.autoanswer.ms 0
于 2017-08-08T17:35:25.013 回答
-3

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

于 2012-05-04T03:20:16.270 回答