私はこのコードを持っています:
info.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
if(ma==null)
ma = new MA(my, adCallbackListener, true); // ad caching is enabled
ma.callAppWall(); //this will start the AppWall ad but it will not show you AppWall instantly.
@Override
public void onAdCached(AdType adType) {
//you will receive the information here if an ad is cached.
}
ma.showCachedAd(my, AdType.appwall);
}});
メソッド onAdCached を実行すると、次のエラーが表示されます。
「void は変数 onAdCached の無効な型です」なぜですか? 解決することを願っています。