Package 

Class CallCompositeMultitaskingOptions


  • 
    public final class CallCompositeMultitaskingOptions
    
                        

    Multitasking configuration to provide for CallComposite.

    
    // Initialize the call composite builder with parameters
    final CallCompositeBuilder builder = new CallCompositeBuilder()
        .multitasking(new CallCompositeMultitaskingOptions(true, true));
    
    // Build the call composite
    CallComposite callComposite = builder.build();
    
    
    • Constructor Detail

      • CallCompositeMultitaskingOptions

        CallCompositeMultitaskingOptions(Boolean enableMultitasking)
        Parameters:
        enableMultitasking - While on the call, user can go back to previous activity from the call composite.
      • CallCompositeMultitaskingOptions

        CallCompositeMultitaskingOptions(Boolean enableMultitasking, Boolean enableSystemPictureInPictureWhenMultitasking)
        Parameters:
        enableMultitasking - While on the call, user can go back to previous activity from the call composite.
        enableSystemPictureInPictureWhenMultitasking - When enableMultitasking is set to true,enables a system Picture-in-picture mode when usernavigates away from call composite.