Share via


Call.Callback.HandoverFailureNotSupported Field

Definition

Caution

This constant will be removed in the future version. Use Android.Telecom.HandoverFailureReason enum directly instead of this field.

Handover failure reason returned via #onHandoverFailed(Call, int) when a handover is initiated but the source or destination app does not support handover.

[Android.Runtime.Register("HANDOVER_FAILURE_NOT_SUPPORTED", ApiSince=28)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Telecom.HandoverFailureReason enum directly instead of this field.", true)]
public const Android.Telecom.HandoverFailureReason HandoverFailureNotSupported = 2;
[<Android.Runtime.Register("HANDOVER_FAILURE_NOT_SUPPORTED", ApiSince=28)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Telecom.HandoverFailureReason enum directly instead of this field.", true)>]
val mutable HandoverFailureNotSupported : Android.Telecom.HandoverFailureReason

Field Value

Value = 2
Attributes

Remarks

Handover failure reason returned via #onHandoverFailed(Call, int) when a handover is initiated but the source or destination app does not support handover.

Will be returned when a handover is requested via #handoverTo(PhoneAccountHandle, int, Bundle) and the destination PhoneAccountHandle does not declare PhoneAccount#EXTRA_SUPPORTS_HANDOVER_TO. May also be returned when a handover is requested at the PhoneAccountHandle for the current call (i.e. the source call's Details#getAccountHandle()) does not declare PhoneAccount#EXTRA_SUPPORTS_HANDOVER_FROM.

For more information on call handovers, see #handoverTo(PhoneAccountHandle, int, Bundle).

Java documentation for android.telecom.Call.Callback.HANDOVER_FAILURE_NOT_SUPPORTED.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to