Quick question:
In the context of an Android activity,
In an adListenner
, when overriding onAdLoaded(){}
and onAdFailedToLoad(int errorCode){}
, should super.onAdLoaded()
and super.onAdFailedToLoad(int errorCode)
be called in the overriden methods?
If so, should the call be made at the beginning or end of the method?
AdListener is an interface, there is no super class method to call.
And in any, generally in Java, Adapters (abstract Listener implementations provided for convenience) contain no implementation in the adapter. The methods are just there so that you don't need to implement those methods that you aren't using.