Is requesting an ad in onAdFailedToLoad good practice?
I am using Admob and the following code in my app with admob. I want to know if this is good practice or not. as you can see my fill rate is very slow.
adView.setAdListener(new AdListener() {
@Override
public void onAdFailedToLoad(int errorCode) {
super.onAdFailedToLoad(errorCode);
adView.loadAd(new AdRequest.Builder().build());
}
});
+3
source to share