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. } } } } }
자바
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)
자바
// 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>