CallRedirectionService.OnUnbind(Intent) 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 all clients have disconnected from a particular interface published by the service.
[Android.Runtime.Register("onUnbind", "(Landroid/content/Intent;)Z", "", ApiSince=29)]
public override sealed bool OnUnbind(Android.Content.Intent intent);
[<Android.Runtime.Register("onUnbind", "(Landroid/content/Intent;)Z", "", ApiSince=29)>]
override this.OnUnbind : Android.Content.Intent -> bool
Parameters
- intent
- Intent
Returns
Return true if you would like to have the service's onRebind(Intent) method later called when new clients bind to it.
- Attributes
Remarks
Called when all clients have disconnected from a particular interface published by the service. The default implementation does nothing and returns false.
Android reference for android.telecom.CallRedirectionService.onUnbind.
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.