RecyclerView takes up all screenspace

后端 未结 2 832
隐瞒了意图╮
隐瞒了意图╮ 2020-12-18 12:05

So I\'m having some trouble with a RecyclerView in a layout file

Here it is:



        
2条回答
  •  一整个雨季
    2020-12-18 12:46

    Change the root view to a FrameLayout. Set the gravity of the LinearLayout to bottom

    
    
    
    
    
    
    
    
        
    
        

    Alternatively, you can wrap the linear layout in a FrameLayout and set it to align_parentBottom = true if it is a relative layout or a linear layout at your root and you have other things in your view.

提交回复
热议问题