InCallService.OnCallRemoved(Call) Method
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.
Called when a Call
has been removed from this in-call session.
[Android.Runtime.Register("onCallRemoved", "(Landroid/telecom/Call;)V", "GetOnCallRemoved_Landroid_telecom_Call_Handler", ApiSince=23)]
public virtual void OnCallRemoved (Android.Telecom.Call? call);
[<Android.Runtime.Register("onCallRemoved", "(Landroid/telecom/Call;)V", "GetOnCallRemoved_Landroid_telecom_Call_Handler", ApiSince=23)>]
abstract member OnCallRemoved : Android.Telecom.Call -> unit
override this.OnCallRemoved : Android.Telecom.Call -> unit
Parameters
- call
- Call
A newly removed Call
.
- Attributes
Remarks
Called when a Call
has been removed from this in-call session. The in-call user experience should remove any state listeners from the specified Call
and immediately stop displaying any information about this Call
. Subsequent invocations of #getCalls()
will no longer include this Call
.
Java documentation for android.telecom.InCallService.onCallRemoved(android.telecom.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.