SmartRefreshLayout(下拉刷新、上拉加载更多) 开源库的简单引入

引入步骤:

 

1、在 build.gradle 中添加以下依赖

   //SmartRefreshLayout 开源库
    implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-21'
    implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-21'

    //引入design主要是为了使用RecyclerView组件
    implementation 'com.android.support:design:28.0.0'

 

2、在XML布局文件中添加 SmartRefreshLayout

   
        
        
    

 

3、在 Activity 或者 Fragment 中添加如下代码进入监听

你可能感兴趣的:(Android)