我正在使用Corona 1137的内部活动插件 我可以展示横幅广告,文字广告和全屏广告,但这些广告不会调用我的回调功能。
我想要做的是查看用户是否关闭了全屏广告,然后立即加载横幅广告。
我使用此代码块:
function showAd( t )
if t == "fsc" then
print( "Ad call with fsc" )
native.setActivityIndicator( true )
ads.show( "fullscreen", { x = 0, y = 0, interval = 60, testMode = false } )
elseif t == "n" then
print( "Ad call with n" )
ads.show( "banner", { x = 0, y = display.actualContentHeight - 48, interval = 30 }, 20 )
else
ads.hide()
end
end
local function adListener( event )
print( "Ad event : ", event )
native.setActivityIndicator( false )
if event.isError then
print( "Failed to receive an add." )
end
end
-- Inner-Active
ads.init( "inneractive", "*******ID********", adListener )
showAd( "n" )
我有什么可以查看广告是否已关闭? 感谢...
答案 0 :(得分:1)
我的名字是Noga,我是Inneractive的社区经理。 我邀请您访问Inneractive的开发人员维基:https://inneractive.jira.com/wiki/display/DevWiki/Home。 大多数答案已经存在。
如果您仍然无法找到答案,请通过您的控制台打开支持服务单,支持经理会直接与您联系。
祝你好运!
诺加