Child inside NestedScrollView not cover full height of screen

后端 未结 1 1475
傲寒
傲寒 2021-02-06 22:03

I am using NestedScrollView in my fragment. In my xml inside a RelativeLayout but it is not covering full height of screen.

Below is my code -



        
1条回答
  •  清歌不尽
    2021-02-06 22:50

    Try to add this line of code on your nestedscrollview

    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    

    Remove:

    android:fitsSystemWindows="true"
    

    0 讨论(0)
提交回复
热议问题