PhoneAccount.CapabilitySupportsVoiceCallingIndications Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
This constant will be removed in the future version. Use Android.Telecom.PhoneAccountCapability enum directly instead of this field.
Flag indicating that this PhoneAccount
provides SIM-based voice calls, potentially as
an over-the-top solution such as wi-fi calling.
[Android.Runtime.Register("CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS", ApiSince=33)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Telecom.PhoneAccountCapability enum directly instead of this field.", true)]
public const Android.Telecom.PhoneAccountCapability CapabilitySupportsVoiceCallingIndications = 65536;
[<Android.Runtime.Register("CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS", ApiSince=33)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Telecom.PhoneAccountCapability enum directly instead of this field.", true)>]
val mutable CapabilitySupportsVoiceCallingIndications : Android.Telecom.PhoneAccountCapability
Field Value
Value = 65536Implements
- Attributes
Remarks
Flag indicating that this PhoneAccount
provides SIM-based voice calls, potentially as an over-the-top solution such as wi-fi calling.
Similar to #CAPABILITY_SUPPORTS_VIDEO_CALLING
, this capability indicates this PhoneAccount
has the ability to make voice calls (but not necessarily at this time). Whether this PhoneAccount
can make a voice call is ultimately controlled by #CAPABILITY_VOICE_CALLING_AVAILABLE
, which indicates whether this PhoneAccount
is currently capable of making a voice call. Consider a case where, for example, a PhoneAccount
supports making voice calls (e.g. #CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS
), but a current lack of network connectivity prevents voice calls from being made (e.g. #CAPABILITY_VOICE_CALLING_AVAILABLE
).
In order to declare this capability, this PhoneAccount
must also declare #CAPABILITY_SIM_SUBSCRIPTION
or #CAPABILITY_CONNECTION_MANAGER
and satisfy the associated requirements.
Java documentation for android.telecom.PhoneAccount.CAPABILITY_SUPPORTS_VOICE_CALLING_INDICATIONS
.
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.