错误是:
AdListener类型不能是FlyingPanda的超级接口;超级接口必须是接口
public class FlyingPanda extends Activity implements AdListener {
问题出在哪里我尝试用extends替换implements kyeword,但错误仍然存在。
需要你帮助PLZ
答案 0 :(得分:0)
根据docs,
您无法再从Activity或类
实现AdListener您可以将其用作匿名内部类:
对于插页式广告:
interstitalAd.setAdListener(new AdListener() {
public void onAdLoaded() {}
public void onAdFailedToLoad(int errorcode) {}
// Only implement methods you need.
});
适用于横幅广告
adView.setAdListener(new AdListener() {
public void onAdLoaded() {}
public void onAdFailedToLoad(int errorcode) {}
// Only implement methods you need.
});