2015-01-13 7 views
0

추가시 오류 :오류 GPS 라이브러리 몹에게 ​​

타입 AdListener가이 FlyingPanda의 슈퍼 수 없다; 슈퍼 인터페이스 내가 여전히 오류를 제외한 확장에 의해 kyeword 구현을 대체하려고 문제의 인터페이스

public class FlyingPanda extends Activity implements AdListener { 

을해야합니다.

당신은 더 이상 활동 또는 클래스에서 AdListener가를 구현할 수 없다, 당신은 docs에 따르면 PLZ

답변

0

도움이 필요

당신은 익명의 내부 클래스로 사용할 수 있습니다 :

전면 광고의 경우 :

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. 
});