Relative Content

Tag Archive for androidkotlinadmob

What am I missing in my AdMob implementation?

I’m new to Android App Development, and I have read the documentation and watched a few videos about how to implement banner ads. However, I couldn’t get it figured out. I’m not too sure where I’m messing up on the AdMob implementation code. I can see the “Ads By Google” banner ad in my activity_main.xml, but I cannot see any ad previews when launching the app.

is it right to set visibility gone for adview? Admob

adview=findViewById(R.id.adView) val adRequest = AdRequest.Builder().build() adview.loadAd(adRequest) I am using this code to load banner ads, but I also have a button that has to make it so it does not show the ads anymore and one solution I found is to write adView.visability=gone. All I want to know if there will be any problems, will […]