Android AndEngine LeadBolt集成

时间:2012-06-03 14:59:32

标签: android notifications andengine ads leadbolt

我刚刚完成了我的Android应用程序,我想尝试使用LeadBolt广告。

LeadBolt信息: enter image description here

Java代码:

    @Override
public void onLoadComplete() {
    // TODO Auto-generated method stub
    myController = new AdController(this, "169901169");
    myController.loadAd();

}

未显示LeadBolt通知。为什么呢?!

2 个答案:

答案 0 :(得分:0)

您正在运行通知,但在您的代码中,您有以下几行: myController = new AdController(this,“169901169”); myController.loadAd();

请将其更改为(如PDF文档中所述): myController = new AdController(getApplicationContext(),“169901169”); myController.loadNotification();

通知广告应该正常运行。

答案 1 :(得分:0)

通知需要更多操作。首先,更改Manifest,然后按照LeadBolt文档进行操作