Share via


TelecomManager.StartConference(IList<Uri>, Bundle) Method

Definition

Place a new adhoc conference call with the provided participants using the system telecom service.

[Android.Runtime.Register("startConference", "(Ljava/util/List;Landroid/os/Bundle;)V", "GetStartConference_Ljava_util_List_Landroid_os_Bundle_Handler", ApiSince=31)]
[Android.Runtime.RequiresPermission("android.permission.CALL_PHONE")]
public virtual void StartConference (System.Collections.Generic.IList<Android.Net.Uri> participants, Android.OS.Bundle extras);
[<Android.Runtime.Register("startConference", "(Ljava/util/List;Landroid/os/Bundle;)V", "GetStartConference_Ljava_util_List_Landroid_os_Bundle_Handler", ApiSince=31)>]
[<Android.Runtime.RequiresPermission("android.permission.CALL_PHONE")>]
abstract member StartConference : System.Collections.Generic.IList<Android.Net.Uri> * Android.OS.Bundle -> unit
override this.StartConference : System.Collections.Generic.IList<Android.Net.Uri> * Android.OS.Bundle -> unit

Parameters

participants
IList<Uri>

List of participants to start conference with

extras
Bundle

Bundle of extras to use with the call

Attributes

Remarks

Place a new adhoc conference call with the provided participants using the system telecom service. This method doesn't support placing of emergency calls.

An adhoc conference call is established by providing a list of addresses to TelecomManager#startConference(List<Uri>, int videoState) where the ConnectionService is responsible for connecting all indicated participants to a conference simultaneously. This is in contrast to conferences formed by merging calls together (e.g. using android.telecom.Call#mergeConference()).

The following keys are supported in the supplied extras. <ul> <li>#EXTRA_PHONE_ACCOUNT_HANDLE</li> <li>#EXTRA_START_CALL_WITH_SPEAKERPHONE</li> <li>#EXTRA_START_CALL_WITH_VIDEO_STATE</li> </ul>

Java documentation for android.telecom.TelecomManager.startConference(java.util.List<android.net.Uri>, android.os.Bundle).

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