一旦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嗎?謝謝高級
- 3 回答
- 0 關注
- 505 瀏覽
添加回答
舉報
0/150
提交
取消