8

我有 4 个片段的 viewpager2。其中 3 个具有 SwipeRefreshLayout 以刷新特定片段中的异步任务数据。

当使用 SwipeRefreshLayout 和 viewpager2 时,手势在某种程度上是冲突的。IE。向下滑动刷新会使屏幕如此敏感,向左或向右稍微移动也会使页面屏幕发生变化,刷新图标冻结或进程未完成。

我的目标是使手势独立,例如,当我开始向下滑动 SwipeRefreshLayout 时,vp2 被禁用,因此它不会干扰 SRL。

使用带有 SwipeRefreshLayout 的标准 viewpager 时没有发生这种情况,手势不冲突,但我需要在 VP2 中使用“setUserInputEnabled”。知道如何减轻这种行为,我应该在 SwipeRefreshLayout 级别还是在 vipager2 代码中减轻它?

4

3 回答 3

6

编辑:更新为 1.1.0 已于 2020 年 7 月 22 日发布

该问题是由于 SwipeRefreshLayout 中的一个错误造成的,该错误已在 1.1.0 版中得到解决。要使用它,只需通过在 Gradle 文件的依赖项中添加以下行来升级到该版本:

implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'

有关错误历史记录,请参阅 issueTracker:[ViewPager2] SwipeRefreshLayout 不应忽略 requestDisallowInterceptTouchEvent。请注意,那里还描述了一种解决方法(扩展 SwipeRefreshLayout 并覆盖“requestDisallowInterceptTouchEvent”)。

于 2020-05-21T17:42:37.700 回答
5

当我添加到滚动视图时,看起来问题已解决:

android:nestedScrollingEnabled="true"

片段布局的最终​​代码如下所示:

<?xml version="1.0" encoding="utf-8"?>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/some_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/activity_background"
tools:context="some_fragment_name">

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true"
    android:nestedScrollingEnabled="true" <<<<------ HERE the change
    android:id="@+id/some_id">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/sensors_relative_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context="some_package_name">

    <TextView
        android:id="@+id/some_id"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="@android:color/white"
        android:gravity="center"
        android:textColor="@android:color/black"
        android:textStyle="bold"
        android:layout_marginTop="5sp"
        android:layout_marginLeft="5sp"
        android:layout_marginRight="5sp"
        android:textSize="20sp" />

...

于 2019-08-03T16:21:17.087 回答
1

如果你有RecyclerViewSwipeRefreshLayout需要RecyclerViewFrameLayoutaur 中包装任何其他布局并设置nestedScrollingEnabled="true"在 Layout not set on RecyclerView

<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    android:id="@+id/swipeRefreshLayout"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:nestedScrollingEnabled="true">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/media_recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    </FrameLayout>

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
于 2020-03-25T17:42:02.813 回答