我的Admob账户最近突然被关闭了,没有任何警告。因此,我正在尝试集成Leadbolt广告库,但广告没有显示。我只是想在页面底部添加横幅。这是我到目前为止所知道的:
我的Activtiy.onCreate()中的代码
super.onCreate(savedInstanceState);
// ... other stuff...
// private AdController ad; (This is defined as a class variablein the activity)
ad = new AdController(this, "my_section_id"); // my_section_id from the leadbolt page where I configured the banner ad.
ad.loadAd();我的Activity.onDestroy()中的代码
ad.destroyAd();
super.onDestroy();配置页面将正确显示所有内容:

我还添加了Manifest文件中的所有权限。根据Doumentation,我找不到任何需要的xml/布局添加。
会出什么问题呢?
发布于 2014-05-14 01:02:00
您需要使用
ad.loadStartAd("Audio id", "re-engagement id");https://stackoverflow.com/questions/22738000
复制相似问题