Builder
open class Builder
kotlin.Any | |
↳ | android.telecom.CallScreeningService.CallResponse.Builder |
Summary
Public constructors | |
---|---|
Builder() |
Public methods | |
---|---|
open CallScreeningService.CallResponse! |
build() |
open CallScreeningService.CallResponse.Builder |
setCallComposerAttachmentsToShow(callComposerAttachmentsToShow: Int) Sets the call composer attachments that should be shown to the user. |
open CallScreeningService.CallResponse.Builder! |
setDisallowCall(shouldDisallowCall: Boolean) Sets whether the incoming call should be blocked. |
open CallScreeningService.CallResponse.Builder! |
setRejectCall(shouldRejectCall: Boolean) Sets whether the incoming call should be disconnected as if the user had manually rejected it. |
open CallScreeningService.CallResponse.Builder |
setSilenceCall(shouldSilenceCall: Boolean) Sets whether ringing should be silenced for the incoming call. |
open CallScreeningService.CallResponse.Builder! |
setSkipCallLog(shouldSkipCallLog: Boolean) Sets whether the incoming call should not be displayed in the call log. |
open CallScreeningService.CallResponse.Builder! |
setSkipNotification(shouldSkipNotification: Boolean) Sets whether a missed call notification should not be shown for the incoming call. |
Public constructors
Builder
Builder()
Public methods
setCallComposerAttachmentsToShow
open fun setCallComposerAttachmentsToShow(callComposerAttachmentsToShow: Int): CallScreeningService.CallResponse.Builder
Sets the call composer attachments that should be shown to the user. Attachments that are not shown will not be passed to the in-call UI responsible for displaying the call to the user. If this method is not called on a Builder
, all attachments will be shown, except pictures, which will only be shown to users if the call is from a contact. Setting attachments to show will have no effect if the call screening service does not belong to the same package as the system dialer (as returned by TelecomManager#getSystemDialerPackage()
).
Parameters | |
---|---|
callComposerAttachmentsToShow |
Int: A bitmask of call composer attachments to show. Value is either 0 or a combination of android.telecom.CallScreeningService.CallResponse#CALL_COMPOSER_ATTACHMENT_PICTURE , android.telecom.CallScreeningService.CallResponse#CALL_COMPOSER_ATTACHMENT_LOCATION , android.telecom.CallScreeningService.CallResponse#CALL_COMPOSER_ATTACHMENT_SUBJECT , and android.telecom.CallScreeningService.CallResponse#CALL_COMPOSER_ATTACHMENT_PRIORITY |
Return | |
---|---|
CallScreeningService.CallResponse.Builder |
This value cannot be null . |
setDisallowCall
open fun setDisallowCall(shouldDisallowCall: Boolean): CallScreeningService.CallResponse.Builder!
Sets whether the incoming call should be blocked.
setRejectCall
open fun setRejectCall(shouldRejectCall: Boolean): CallScreeningService.CallResponse.Builder!
Sets whether the incoming call should be disconnected as if the user had manually rejected it. This property should only be set to true if the call is disallowed.
setSilenceCall
open fun setSilenceCall(shouldSilenceCall: Boolean): CallScreeningService.CallResponse.Builder
Sets whether ringing should be silenced for the incoming call. When set to true
, the Telecom framework will not play a ringtone for the call. The call will, however, still be sent to the default dialer app if it is not blocked. A CallScreeningService
can use this to ensure a potential nuisance call is still surfaced to the user, but in a less intrusive manner. Setting this to true only makes sense when the call has not been disallowed using setDisallowCall(boolean)
.
Return | |
---|---|
CallScreeningService.CallResponse.Builder |
This value cannot be null . |
setSkipCallLog
open fun setSkipCallLog(shouldSkipCallLog: Boolean): CallScreeningService.CallResponse.Builder!
Sets whether the incoming call should not be displayed in the call log. This property should only be set to true if the call is disallowed.
Note: Calls will still be logged with type android.provider.CallLog.Calls#BLOCKED_TYPE
, regardless of how this property is set.
Note: Only the carrier and system call screening apps can use this parameter; this parameter is ignored otherwise.
setSkipNotification
open fun setSkipNotification(shouldSkipNotification: Boolean): CallScreeningService.CallResponse.Builder!
Sets whether a missed call notification should not be shown for the incoming call. This property should only be set to true if the call is disallowed.