2

我已经正确整合了一切。唯一的问题是当我想加载广告(appflood 的任何广告)时,示例是插页式广告

AppFlood.showFullScreen(this);

错误是

The method showFullScreen(Activity) in the type AppFlood is not applicable for the arguments (LiveWallpaper)

我曾经将 appflood 与我的扩展 AndroidApplication 类的 libgdx 游戏集成,但在动态壁纸中这不起作用。我也想让 appflood 在 libgdx livewallpaper 中工作

4

2 回答 2

4

创建一个活动类,在其 onCreate() 方法中显示 appflood

并将侦听器附加到应用泛洪,以向您提供应用泛洪是否关闭的回调。

在其关闭回调完成您的活动。

在 onCreateEngine() 方法中调用此活动的意图

这应该可以帮助你

于 2013-07-05T07:34:22.667 回答
4

这是对@newbieUser 评论的回复

AppFlood.initialize(this, "", "", AppFlood.AD_ALL);
AppFlood.setEventDelegate( new AFEventDelegate() {  
@Override
public void onClose(JSONObject arg0) {
finish();
}

@Override
public void onClick(JSONObject arg0) {

}
});


AppFlood.showFullScreen(this);

AppFlood.setEventDelegate 用于添加监听器

于 2013-07-05T12:19:26.317 回答