SwipeRefreshLayout 在 Android 中不起作用

Posted

技术标签:

【中文标题】SwipeRefreshLayout 在 Android 中不起作用【英文标题】:SwipeRefershLayout is not working in Android 【发布时间】:2021-10-03 02:06:27 【问题描述】:

SwipeRefershLayout 在 android 中不起作用。

这是我的 XML 代码:

//other code
.....

    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    android:id="@+id/swipeRefreshLayout"
    android:layout_
    android:layout_
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/searchCardView">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_
        android:layout_
        android:layout_marginTop="8dp"
        tools:listitem="@layout/room_dashboard_sample"/>

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
.....
//other codes

这是我的主要活动:

        modelList = new ArrayList<>();
    dashboardAdapter = new DashboardAdapter(this, modelList);
    binding.recyclerView.setLayoutManager(new LinearLayoutManager(this));
    binding.recyclerView.setAdapter(dashboardAdapter);

    modelList.clear();
    firestore.collection("Rooms").orderBy("timestamp", Query.Direction.DESCENDING).get().addOnSuccessListener(queryDocumentSnapshots -> 
        List<DocumentSnapshot> list = queryDocumentSnapshots.getDocuments();
        for (DocumentSnapshot d : list) 
            DashboardModel obj = d.toObject(DashboardModel.class);
            modelList.add(obj);
        
        dashboardAdapter.notifyDataSetChanged();
    ).addOnFailureListener(e -> Timber.d("onFailure: %s", e.getMessage()));

    //please give attension in this below code!
    binding.swipeRefreshLayout.setOnRefreshListener(() -> 
        dashboardAdapter.notifyDataSetChanged();
        binding.swipeRefreshLayout.setRefreshing(false);
    );

【问题讨论】:

如果要更新列表,您必须再次调用数据库 为什么你的 RecyclerView 宽度和高度设置为 0dp ? SwipeRefreshLayout 不是 Contraitslayout 的孩子。将其更改为 match_parent 。 好的@ADM .................... 你得到这种行为,很可能是因为宽度和高度都是 0dp,对吧? 【参考方案1】:

最好创建一个特定的方法来调用数据库。您可以将它们包装在一个方法中。

private void getRoomsList()
    firestore.collection("Rooms").orderBy("timestamp", Query.Direction.DESCENDING).get().addOnSuccessListener(queryDocumentSnapshots -> 
        List<DocumentSnapshot> list = queryDocumentSnapshots.getDocuments();
        for (DocumentSnapshot d : list) 
            DashboardModel obj = d.toObject(DashboardModel.class);
            modelList.add(obj);
        
        dashboardAdapter.notifyDataSetChanged();
    ).addOnFailureListener(e -> Timber.d("onFailure: %s", e.getMessage()));

然后,您只需在onCreateswipeRefreshLayout 中调用它。

binding.swipeRefreshLayout.setOnRefreshListener(() -> 
    getRoomList();
    binding.swipeRefreshLayout.setRefreshing(false);
);

为了更好的方法,您可以在notifyDataSetChanged 之后调用setRefreshing 并将其从getRoomList 下方删除,如下所示:

//another code...
dashboardAdapter.notifyDataSetChanged();
binding.swipeRefreshLayout.setRefreshing(false); //place it here

swipeRefreshLayout

binding.swipeRefreshLayout.setOnRefreshListener(() -> 
    getRoomList();
);

【讨论】:

以上是关于SwipeRefreshLayout 在 Android 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

SwipeRefreshLayout 在 Android 中不起作用

怎样实现SwipeRefreshLayout的自动刷新

SwipeRefreshLayout与ViewPager滑动事件冲突解决

DragSortListView 无法在 SwipeRefreshLayout 上向下拖动

当 ScrollView 不在顶部时禁用 SwipeRefreshLayout

Android基础控件——SwipeRefreshLayout最简单的下拉刷新