appnext.getProgressColor()

类型 函数
返回值 字符串
修订 版本 2024.3703
关键字 广告、广告宣传、Appnext、getProgressColor
另请参阅 appnext.setProgressColor()
appnext.*

概述

仅与全屏广告和有奖励广告相关。获取广告视频播放器进度条的颜色。

语法

appnext.getProgressColor( adKey )
adKey (必需)

字符串。为先前创建的广告返回的广告键。

示例

local appnext = require( "plugin.appnext" )

local function adListener( event )
    print( "Received " .. event.event .. " for " .. event.adKey .. " with message: " .. event.message )
end

-- Initialize the Appnext plugin
appnext.init( adListener )

-- Create your ads
local fullscreenPlacementID

local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
    fullscreenPlacementID = "YOUR_IOS_FULLSCREEN_PLACEMENT_ID"
elseif ( platform == "Android" ) then
    fullscreenPlacementID = "YOUR_ANDROID_FULLSCREEN_PLACEMENT_ID"
end

local fullscreenAdKey = appnext.createAd( "fullscreen", fullscreenPlacementID )

appnext.setProgressColor( fullscreenAdKey, "#FFFFFF" )
print( "Progress color: " .. appnext.getProgressColor( fullscreenAdKey ) )