我正在开发一个呼叫者屏幕应用程序,其中有两个按钮可以接受和拒绝呼叫。按钮拒绝功能正常运行,但是接受按钮在所有Android版本中均无法运行
iTelephony= (ITelephony) context
.getSystemService(Context.TELECOM_SERVICE);
try {
iTelephony.answerRingingCall();
} catch (RemoteException e) {
e.printStackTrace();
}