Android 10 (एपीआई लेवल 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>