Ошибка SmartWall airpush, void - недопустимый тип для переменной onAdCached
У меня есть этот код:
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" Почему? Я надеюсь решить.