加载时切换回收器视图布局

switch recycler view layout while loading

我想在加载时切换回收器视图布局,以便显示一些指示进度的内容:

据我所知,RecyclerView 中没有内置的功能来处理此问题。您必须实现自己的加载行为

在拥有您的 RecyclerView 的同一视图中,您应该添加一个 ProgressBar,当您调用以获取 RecyclerView 的数据时,隐藏 RecyclerView 并显示 ProgressBar。加载数据后将它们切换回来

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

    <!-- Your RecyclerView here -->

    <ProgressBar
        android:id="@+/progress_bar"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:indeterminate="true"/>
</FrameLayout>