যে ডিভাইসগুলি Android 10 (API স্তর 29) বা উচ্চতর চালায় সেগুলি আপনার অ্যাপটিকে সম্ভাব্য স্প্যাম কল হিসাবে ব্যবহারকারীর ঠিকানা বইতে নেই এমন নম্বরগুলি থেকে কলগুলি সনাক্ত করতে দেয়৷ ব্যবহারকারীরা স্প্যাম কলগুলি নিঃশব্দে প্রত্যাখ্যান করা বেছে নিতে পারেন। ব্যবহারকারীরা কল মিস করলে তাদের আরও স্বচ্ছতা প্রদান করতে, এই ব্লক করা কলগুলির তথ্য কল লগে লগ করা হয়। অ্যান্ড্রয়েড 10 এপিআই ব্যবহার করে কল স্ক্রীনিং এবং কলার আইডি কার্যকারিতা প্রদানের জন্য ব্যবহারকারীর কাছ থেকে READ_CALL_LOG
অনুমতি পাওয়ার প্রয়োজনীয়তা দূর করে।
আপনি কল স্ক্রিন করার জন্য একটি CallScreeningService
বাস্তবায়ন ব্যবহার করেন। নম্বরটি ব্যবহারকারীর যোগাযোগ তালিকায় না থাকলে যেকোনো নতুন ইনকামিং বা আউটগোয়িং কলের জন্য onScreenCall()
ফাংশনে কল করুন। আপনি কল সম্পর্কে তথ্যের জন্য Call.Details
অবজেক্ট চেক করতে পারেন। বিশেষত, getCallerNumberVerificationStatus()
ফাংশন অন্য নম্বর সম্পর্কে নেটওয়ার্ক প্রদানকারীর তথ্য অন্তর্ভুক্ত করে। যাচাইকরণের স্থিতি ব্যর্থ হলে, এটি একটি ভাল ইঙ্গিত যে কলটি একটি অবৈধ নম্বর বা একটি সম্ভাব্য স্প্যাম কল থেকে এসেছে৷
কোটলিন
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 } } } }
নতুন কলে কীভাবে সাড়া দিতে হবে তা সিস্টেমকে জানাতে respondToCall()
কল করতে onScreenCall()
ফাংশন সেট করুন। এই ফাংশনটি একটি CallResponse
প্যারামিটার নেয় যা আপনি সিস্টেমকে কলটি ব্লক করতে, ব্যবহারকারীর মতো এটি প্রত্যাখ্যান করতে বা নীরব করতে বলতে পারেন। আপনি সিস্টেমকে বলতে পারেন যে ডিভাইসের কল লগে এই কলটি সম্পূর্ণভাবে যোগ করা এড়িয়ে যেতে।
কোটলিন
// 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>