How to get Adview below Viewpager in CoordinatorLayout

前端 未结 5 1216
慢半拍i
慢半拍i 2021-01-30 13:20

At the moment the AdView is appearing inside the ViewPager so its blocking the content in the app. How can I get the AdView to appear belo

5条回答
  •  囚心锁ツ
    2021-01-30 13:51

    You can add ViewPager and AdView inside RelativeLayout and specify android:layout_above="@+id/adView" property to ViewPager so that adView doesn't block the ViewPager contents.

    
    
        
    
            
    
                
    
                
    
            
    
            
    
        
    
        
    
    
    

提交回复
热议问题