我已经将我的应用程序设为默认呼叫应用程序,但对于来电我不想使用我的UI我想将来电转接到系统默认应用程序实际上我正在拒绝来自我的默认应用程序的特定来电,但当其他来电时我想将其转接到默认系统应用程序我如何实现这一点我已经在Play Store上看到应用程序这样做了我已经使用了所有的InCallService方法,但我找不到任何方法将呼叫转接到系统调用应用程序我也尝试了这种方法,但它给出了异常no activity found
Intent intent = new Intent( Intent.ACTION_ANSWER, Uri.parse( "tel:" + number));
this.startActivity( intent );发布于 2018-10-01 18:06:41
安卓9将有移交选项,所以你可以检查,也许可以帮助你,更多内容请访问:https://developer.android.com/reference/android/telecom/Call#handoverTo(android.telecom.PhoneAccountHandle,%20int,%20android.os.Bundle)
https://stackoverflow.com/questions/52134207
复制相似问题