Class Info |
---|
public static final class VideoConfiguration.Builder extends Object Video configuration builder. |
Constructor |
---|
Builder() Constructs a video configuration builder. |
Qualifier and Type | Method Name and Description |
---|---|
build() Builds a VideoConfiguration object with specified attributes. | |
VideoConfiguration.Builder | setAudioFocusType(int audioFocusType) Sets the audio focus type. |
VideoConfiguration.Builder | setClickToFullScreenRequested(boolean clickToFullScreenRequested) Sets whether a video ad can be displayed in full-screen mode upon a click. |
VideoConfiguration.Builder | setCustomizeOperateRequested(boolean customizeOperateRequested) Sets whether a custom player control is used for a video ad. |
VideoConfiguration.Builder | setStartMuted(boolean startMuted) Sets whether to mute a video initially. |
Constructor |
---|
public Builder() Constructs a video configuration builder. |
Method |
---|
public final VideoConfiguration build() Builds a VideoConfiguration object with specified attributes. |
Returns
Type | Description |
---|---|
Video configuration. |
Method |
---|
public VideoConfiguration.Builder setAudioFocusType(int audioFocusType) Sets the audio focus type. |
Parameters
Name | Description |
---|---|
audioFocusType | Audio focus type. The options are as follows: |
Returns
Type | Description |
---|---|
VideoConfiguration.Builder | Video configuration builder object. |
Method |
---|
public VideoConfiguration.Builder setClickToFullScreenRequested(boolean clickToFullScreenRequested) Sets whether a video ad can be displayed in full-screen mode upon a click. |
Parameters
Name | Description |
---|---|
clickToFullScreenRequested | Indicates whether a video ad can be displayed in full-screen mode upon a click.
|
Returns
Type | Description |
---|---|
VideoConfiguration.Builder | Video configuration builder object. |
Method |
---|
public VideoConfiguration.Builder setCustomizeOperateRequested(boolean customizeOperateRequested) Sets whether a custom player control is used for a video ad. After the setting, you can call the VideoConfiguration.isCustomizeOperateRequested() method for verification. Then you can call VideoOperator.play(), VideoOperator.pause(), and VideoOperator.mute(boolean) to control video ad playback. |
Parameters
Name | Description |
---|---|
customizeOperateRequested | Indicates whether to request a custom player control. |
Returns
Type | Description |
---|---|
VideoConfiguration.Builder | Video configuration builder object. |
Method |
---|
public VideoConfiguration.Builder setStartMuted(boolean startMuted) Sets whether to mute a video initially. |
Parameters
Name | Description |
---|---|
startMuted | Indicates whether to mute a video initially. |
Returns
Type | Description |
---|---|
VideoConfiguration.Builder | Video configuration builder object. |