SmartRefreshLayout 套用 viewpager2 + fragment + recyclerview,出现了 item 底部显示不完整和上滑抢手势的情况
作者: wuzhuohan7788创建于 2026年2月11日更新于 2026年4月19日
<com.scwang.smart.refresh.layout.SmartRefreshLayout android:id="@+id/layout_post_list_refresh" android:layout_width="match_parent" android:layout_height="0dp" android:orientation="vertical" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@id/layout_head">
<com.scwang.smart.refresh.header.ClassicsHeader
android:id="@+id/refreshHead"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.scwang.smart.refresh.footer.ClassicsFooter
android:id="@+id/refreshFoot"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
内容来源: scwang90/SmartRefreshLayout