AdMob banner ad not showing

后端 未结 8 1459
死守一世寂寞
死守一世寂寞 2021-01-07 23:33

I am using admob in my app, it was working fine but suddenly it stopped showing ads at all. Bellow is my codes i used:

mainActivity.xml:



        
8条回答
  •  萌比男神i
    2021-01-08 00:03

    In my case the ad didnt show up until I gave enough room for it.

    Before it was like

    
               
               
    

    Here the adview is having height of wrap_content, so it adjusts itself to achieve its height, but its parent (LinearLayout) has a strict height of 90dip which doesnt allow the adView to take enough space to display ads.

    So what I did was just changed the height of the LinearLayout to wrap_content then things got fine

提交回复
热议问题