I add AdMob's BannerAd view to an activity using:
Later somewhere in my code, I remove it by using:
At a certain point, , I want to check its status i.e. if it is loaded (added) or not.
How can I do that?
B4X:
Activity.AddView(BannerAd, 0dip, 100%y - AdMobHeight, 100%x, AdMobHeight)
Later somewhere in my code, I remove it by using:
B4X:
BannerAd.RemoveView
At a certain point, , I want to check its status i.e. if it is loaded (added) or not.
How can I do that?