コール スクリーニング

Android 10(API レベル 29)以降を搭載しているデバイスでは、アプリが ユーザーのアドレス帳に登録されていない番号からの通話がスパムの可能性がある できます。ユーザーは迷惑電話を通知なく拒否することを選択できます。より優れたカスタマーエクスペリエンスを ブロックした通話に関する情報、不在着信時のユーザー情報 通話は通話履歴に記録されます。Android 10 API を使用すると、 取得する必要があります。 READ_CALL_LOG 通話スクリーニングや発信者番号通知を行うため、ユーザーの許可を得る必要があります。 説明します。

使用するのは CallScreeningService コールをスクリーニングできます。呼び出し onScreenCall() 番号が 追加することもできます。詳しくは、 情報の Call.Details オブジェクト 概要です。具体的には getCallerNumberVerificationStatus() 関数には、他の番号に関するネットワーク プロバイダからの情報が含まれます。 確認ステータスが不合格だった場合は、コールが 迷惑電話の可能性があります。

Kotlin

class ScreeningService : CallScreeningService() {
    // This function is called when an ingoing or outgoing call
    // is from a number not in the user's contacts list
    override fun onScreenCall(callDetails: Call.Details) {
        // Can check the direction of the call
        val isIncoming = callDetails.callDirection == Call.Details.DIRECTION_INCOMING

        if (isIncoming) {
            // the handle (e.g. phone number) that the Call is currently connected to
            val handle: Uri = callDetails.handle

            // determine if you want to allow or reject the call
            when (callDetails.callerNumberVerificationStatus) {
                Connection.VERIFICATION_STATUS_FAILED -> {
                    // Network verification failed, likely an invalid/spam call.
                }
                Connection.VERIFICATION_STATUS_PASSED -> {
                    // Network verification passed, likely a valid call.
                }
                else -> {
                    // Network could not perform verification.
                    // This branch matches Connection.VERIFICATION_STATUS_NOT_VERIFIED.
                }
            }
        }
    }
}

Java

class ScreeningService extends CallScreeningService {
    @Override
    public void onScreenCall(@NonNull Call.Details callDetails) {
        boolean isIncoming = callDetails.getCallDirection() == Call.Details.DIRECTION_INCOMING;

        if (isIncoming) {
            Uri handle = callDetails.getHandle();

            switch (callDetails.getCallerNumberVerificationStatus()) {
                case Connection.VERIFICATION_STATUS_FAILED:
                    // Network verification failed, likely an invalid/spam call.
                    break;
                case Connection.VERIFICATION_STATUS_PASSED:
                    // Network verification passed, likely a valid call.
                    break;
                default:
                    // Network could not perform verification.
                    // This branch matches Connection.VERIFICATION_STATUS_NOT_VERIFIED
            }
        }
    }
}

以下を呼び出すように onScreenCall() 関数を設定します。 respondToCall() 新しい着信への応答方法をシステムに指示しますこの関数は CallResponse パラメータを使用して、着信をブロックするようシステムに指示し、 サイレント モードに設定することもできます。この追加をスキップするようにシステムに指示することもできます。 通話がデバイスの通話履歴にも記録されます。

Kotlin

// Tell the system how to respond to the incoming call
// and if it should notify the user of the call.
val response = CallResponse.Builder()
    // Sets whether the incoming call should be blocked.
    .setDisallowCall(false)
    // Sets whether the incoming call should be rejected as if the user did so manually.
    .setRejectCall(false)
    // Sets whether ringing should be silenced for the incoming call.
    .setSilenceCall(false)
    // Sets whether the incoming call should not be displayed in the call log.
    .setSkipCallLog(false)
    // Sets whether a missed call notification should not be shown for the incoming call.
    .setSkipNotification(false)
    .build()

// Call this function to provide your screening response.
respondToCall(callDetails, response)

Java

// Tell the system how to respond to the incoming call
// and if it should notify the user of the call.
CallResponse.Builder response = new CallResponse.Builder();
// Sets whether the incoming call should be blocked.
response.setDisallowCall(false);
// Sets whether the incoming call should be rejected as if the user did so manually.
response.setRejectCall(false);
// Sets whether ringing should be silenced for the incoming call.
response.setSilenceCall(false);
// Sets whether the incoming call should not be displayed in the call log.
response.setSkipCallLog(false);
// Sets whether a missed call notification should not be shown for the incoming call.
response.setSkipNotification(false);

// Call this function to provide your screening response.
respondToCall(callDetails, response.build());

CallScreeningService の実装をマニフェストに登録する必要があります。 適切なインテント フィルタと権限を付与して、システムがトリガーできるようにする 確認します。

<service
    android:name=".ScreeningService"
    android:permission="android.permission.BIND_SCREENING_SERVICE">
    <intent-filter>
        <action android:name="android.telecom.CallScreeningService" />
    </intent-filter>
</service>