How to place AdView below the RecyclerView? Please see details

后端 未结 4 733
春和景丽
春和景丽 2021-01-17 02:33

I\'m developing an app in which some data is getting loaded from Firebase and is shown in the RecyclerView.

What I want is I want to show t

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-17 03:15

    Try to put your RecyclerView inside other layout, or just set layout_above="@id/card_ads"

    I think the main problem is that you set in card_ads layout_below, but not tell recyclerview that it should be over the card_ads

    
    
    
        
    
            
        
    
        
    
            
            
    
        
    
    
    

    I've add Admob on my App, you can check at Github

    Edit:

    I put match parent, see if it works

    
    

提交回复
热议问题