Język

CallExceptionErrorCode Enum

Definition

public enum CallExceptionErrorCode
type CallExceptionErrorCode = 
Inheritance
CallExceptionErrorCode

Fields

Name Value Description
ErrorUnknown 1

The operation has failed due to an unknown or unspecified error.

Android reference for android.telecom.CallException.CODE_ERROR_UNKNOWN.

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.

CannotHoldCurrentActiveCall 2

The operation has failed due to Telecom failing to hold the current active call for the call attempting to become the new active call. The client should end the current active call and re-try the failed operation.

Android reference for android.telecom.CallException.CODE_CANNOT_HOLD_CURRENT_ACTIVE_CALL.

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.

CallIsNotBeingTracked 3

The operation has failed because Telecom has already removed the call from the server side and destroyed all the objects associated with it. The client should re-add the call.

Android reference for android.telecom.CallException.CODE_CALL_IS_NOT_BEING_TRACKED.

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.

CallCannotBeSetToActive 4

The operation has failed because Telecom cannot set the requested call as the current active call. The client should end the current active call and re-try the operation.

Android reference for android.telecom.CallException.CODE_CALL_CANNOT_BE_SET_TO_ACTIVE.

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.

CallNotPermittedAtPresentTime 5

The operation has failed because there is either no PhoneAccount registered with Telecom for the given operation, or the limit of calls has been reached. The client should end the current active call and re-try the failed operation.

Android reference for android.telecom.CallException.CODE_CALL_NOT_PERMITTED_AT_PRESENT_TIME.

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.

OperationTimedOut 6

The operation has failed because the operation failed to complete before the timeout

Android reference for android.telecom.CallException.CODE_OPERATION_TIMED_OUT.

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