English
Log In
You can then view all documents
Installation/Android/Full screen video
Full screen video
Last updated 2022-01-19 21:57:46

Full screen video

Introduction

Full-screen video ads. The effect of this ad is to play full-screen videos. The video can be skipped after a certain period of time without having to watch the whole process.
Supported ad sizes: Full screen horizontal screen (aspect ratio 16:9), full screen vertical screen (aspect ratio 9:16). Android does not currently support gravity rotation权限
Template rendering full-screen video ads:Provided by default
SDK renders full-screen video ads: Reclaimed,No longer offer to create

Request method

Note: There is no difference between the template rendering full-screen and SDK rendering full-screen ad request methods, only the difference in request parameters.
The setExpressViewAcceptedSize parameter needs to be set in the full-screen video request method of template rendering. The value set is greater than 0.

Create TTAdNative object

复制

Template rendering request AdSlot

复制

SDK rendering request AdSlot

复制
Parameter description

Method

Description

setCodeId()

The code ID created by the platform starts with 9 and 9 digits

setExpressViewAcceptedSize()

Set the size of the requested template creative. Unit: dp Set the value greater than 0 (required for template ads).Only the template needs to be set to render full-screen video.

setOrientation()


Note: The template rendering code bit setExpressViewAcceptedSize is required, and the SDK template rendering code bit ID should not be passed.

Request ad

The access party can call loadFullScreenVideoAd(AdSlot adSlot, @NonNull FullScreenVideoAdListener listener) to asynchronously load the full-screen video ad

复制

TTFullScreenVideoAd

Method

Parameter

Description

Void setFullScreenVideoAdInteractionListener(TTFullScreenVideoAd.FullScreenVideoAdInteractionListener var1)

TTFullScreenVideoAd.FullScreenVideoAdInteractionListener var1

Method description: Register interactive callback for interstitial ads
Parameter description: listener interactive listener

void setDownloadListener(TTAppDownloadListener var1)

TTAppDownloadListener var1

Method description: download callback of registered advertisement
Parameter description: listener download status callback

int getInteractionType()

No

Method description: get the interactive type of the ad
Parameter description
2: Open in the browser (normal type)
3: Landing page (common type)
4: Application download
5: Make a call
-1: Unknown type

@MainThread void showFullScreenVideoAd(Activity var1)

Activity var1

Method description: display full screen video interface
Parameter description: Activity: host activity

void showFullScreenVideoAd(Activity var1, RitScenes var2, String var3)

Activity var1, RitScenes var2, String var3

Method description: display full screen video interface
Parameter description:
Activity: host activity
RitScenes: The scene where the ad is displayed
String: When the advertisement display scene is CUSTOMIZE_SCENES, the customized scene information

void setShowDownLoadBar(boolean var1)

boolean var1

Method description: set display download bar
Parameter description: boolean type
True
false

Map<String, Object> getMediaExtraInfo()

No

Method description: return additional information about the ad
Parameter description: none

int getFullVideoAdType()

No

Method description: return the true type of the ad
Parameter description
TTAdConstant.AD_TYPE_UNKNOWN = -1;//Unknown type
TTAdConstant.AD_TYPE_COMMON_VIDEO //Ordinary video type
TTAdConstant.AD_TYPE_PLAYABLE_VIDEO //video + playable type
TTAdConstant.AD_TYPE_PLAYABLE //playable type

long getExpirationTimestamp()

No

Method description: Return the expiration time of the validity period. After this point in time, the advertisement is considered expired. Developers can use this interface to determine the current advertisement and when it expires
Parameter description: none

public interface FullScreenVideoAdInteractionListener

No

See FullScreenVideoAdInteractionListener description

FullScreenVideoAdInteractionListener

Method

Description

onAdShow()

Ad display callback

onAdVideoBarClick()

Advertisement download bar click callback

onAdClose()

Ad close callback

onVideoComplete()

Video playback complete callback

onSkippedVideo()

Skip video playback callback

FullScreenVideoAdListener

Method

Description

onError()

Advertisement request failed callback The returned error code (code) indicates the reason why the advertisement request failed. For details, please see https://www.csjplatform.com/support/doc/5de4cc6d78c8690012a90aa5?from=ad.oceanengine.com&id=5de4cc6d78c8690012a90aa5

onFullScreenVideoAdLoad()

Callback when ad loading is complete

onFullScreenVideoCached()

Callback for the completion of the local loading of the advertising video, the access party can directly play the local video after this callback

onFullScreenVideoCached(TTFullScreenVideoAd ad)

The callback for the completion of the local loading of the ad video, the local video can be played directly after the callback, and the parameter object can be used to play directly

Note: For the smoothness of the advertising video material, it is recommended to call the showFullScreenVideoAd method in the main thread to display the advertisement after the onFullScreenVideoCached method is loaded. Set the advertising object to null in time after displaying the advertisement

复制

Advertising interaction listener

复制

Destroy the ad object

复制

Reference Demo
For full-screen video ads, please refer to the FullScreenVideoActivity example in the demo


Contents
Contact us