Class POBVastPlayerConfig.POBVastPlayerUIConfig

  • All Implemented Interfaces:

    
    public class POBVastPlayerConfig.POBVastPlayerUIConfig
    
                        

    Immutable configuration class to control visibility of video player UI controls. This allows fine-grained control over which player controls are shown or hidden for different ad placement types (e.g., Native Ads).

    Use Builder to create instances of this class.

    Example:

    POBVastPlayerUIConfig config = new POBVastPlayerUIConfig.Builder()
        .showProgressBar(false)
        .showMuteButton(true)
        .setMuteButtonLayout(R.layout.pob_video_mute_button_compact)
        .build();