gpt4 book ai didi

android - 底部表单中的滑动刷新布局不滚动

转载 作者:行者123 更新时间:2023-12-04 23:47:12 41 4
gpt4 key购买 nike

我在底页中有recyclerview,效果很好。当我在回收站 View 周围引入一个 swiperefreshlayout 时,它不允许我向上滚动,它只会折叠底页。我希望它滚动回收器 View ,到达顶部然后触发刷新。如果需要,我可以摆脱在底页上的拖拽折叠行为。

   <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>

最佳答案

尝试在 recylerView 上禁用嵌套滚动

list_poits.isNestedScrollingEnabled = false

关于android - 底部表单中的滑动刷新布局不滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52846123/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com