RecyclerView搭配SwipeRefreshLayout和BaseQuickAdapter万能适配器实现下拉刷新和上拉加载更多

本文介绍了如何在Android项目中结合RecyclerView和SwipeRefreshLayout,以及使用BaseQuickAdapter来创建一个具备下拉刷新和上拉加载更多功能的列表。首先,通过在build.gradle文件中导入必要的依赖。接着,创建包含RecyclerView和SwipeRefreshLayout的布局,并初始化这两个组件。然后,创建自定义的Adapter,继承自BaseQuickAdapter,并设置数据源。最后,模拟网络请求填充数据,完成一个功能丰富的列表视图。
摘要由CSDN通过智能技术生成

第一步导入jar包

在app目录下的build.gradle文件中添加

    implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'
    implementation 'com.android.support:recyclerview-v7:27.1.1'

再到工程目录下的build.gradle文件中添加

buildscript {
    repositories {
        jcenter()
        mavenCentral()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

    }
}


allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
        google()
    }
}
task clean(type: Delete) {
    delete rootProject.buildDir
}

这样在项目中就能使用Recyclerview和万能适配器BaseQuickAdapter了

第二步 当然是新建布局加入Recyclerview了,这里我加入了Google官方的下拉刷新控件SwipeRefreshLayout

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </android.support.v7.widget.RecyclerView>
    </android.support.v4.widget.SwipeRefreshLayout>

初始化控件设置各种属性


    /**
     * 初
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值