一旦ACTION_NEW_OUTGOING_CALL已经播出,我需要捕捉对方回答下列事件。请问您如何实现该建议?我知道这是有可能的,因为当他们拿起时,android拨号器应用程序会完全将绿色android图标更改为该人的照片。谢谢!更新:我已经看过Android上处理拨出电话的应用程序的来源。我注意到以下方法ContactsUtils:/** * Kick off an intent to initiate a call. */ public static void initiateCall(Context context, CharSequence phoneNumber) { Intent intent = new Intent(Intent.ACTION_CALL_PRIVILEGED, Uri.fromParts("tel", phoneNumber.toString(), null)); context.startActivity(intent); }我猜我的答案是在听的活动中Intent.ACTION_CALL_PRIVILEGED。因此,重新提出我的问题:有人知道哪个活动可以处理Intent.ACTION_CALL_PRIVILEGED吗?谢谢高级
添加回答
举报
0/150
提交
取消