当前位置: 代码迷 >> 综合 >> NestedScrollView 布局不能撑满屏幕
  详细解决方案

NestedScrollView 布局不能撑满屏幕

热度:57   发布时间:2023-10-19 20:49:10.0

最近写了一个NestedScrollView嵌套recycleview的功能,数据为空时,使用adapter设置空布局显示。不能全部铺满,只显示一行。

解决办法:

android:fillViewport="true"  
<android.support.v4.widget.NestedScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:fillViewport="true"android:overScrollMode="never"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical">.....</LinearLayout>
</android.support.v4.widget.NestedScrollView>