我在底页中有recyclerview,并且工作正常。当我在“回收者”视图周围引入swiperefreshlayout时,它不允许我向上滚动,只会折叠底部的表格。我希望它滚动回收站视图,到达顶部,然后触发刷新。如果需要的话,我可以摆脱底表上折叠行为的拖累。
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light"
app:behavior_peekHeight="?actionBarSize"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior" >
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:visibleGone="@{ model.locPerms }"
app:onRefreshListener="@{ () -> model.refreshPois() }"
app:refreshing="@{ model.refreshing }">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list_pois"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
tools:listitem="@layout/poi_item"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:3)
尝试在recylerView上禁用嵌套滚动
list_poits.isNestedScrollingEnabled = false