每天记录学习的新知识 :SmartRefreshLayout使用
程序员文章站
2022-06-21 19:54:54
SmartRefreshLayout...
源码地址:https://github.com/scwang90/SmartRefreshLayout
例
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-28'
implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-28'//没有使用特殊Header,可以不加这行
<com.scwang.smartrefresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/smart_refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".business.vehicle.ui.notice.NoticeFragment">
<com.....widget.recycler.SkCustom2ClassicsHeader
android:layout_width="match_parent"
android:layout_height="150dp" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/layout_empty" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="5dp" />
</RelativeLayout>
<com.scwang.smartrefresh.layout.footer.ClassicsFooter
android:layout_width="match_parent"
android:layout_height="80dp" />
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
//刷新和加载
smartRefreshLayout.setOnRefreshListener(refreshLayout -> refresh());
smartRefreshLayout.setOnLoadMoreListener(refreshLayout -> loadMore());
//支持刷新和加载
smartRefreshLayout.setEnableRefresh(state);
smartRefreshLayout.setEnableLoadMore(state);
//刷新完成和加载完成
smartRefreshLayout.finishRefresh();
smartRefreshLayout.finishLoadMore();
//自动刷新
smartRefreshLayout.autoRefresh();
其中设置Header和Footer的方式,我们使用的是布局设置,除此之外还有全局设置和代码设置。
Header和Footer的样式
refresh-layout-kernel 核心必须依赖
refresh-header-classics 经典刷新头
refresh-header-radar 雷达刷新头
refresh-header-falsify 虚拟刷新头
refresh-header-material 谷歌刷新头
refresh-header-two-level 二级刷新头
refresh-footer-ball 球脉冲加载
refresh-footer-classics 经典加载
博主效果样式地址:https://github.com/scwang90/SmartRefreshLayout
其他
属性地址:https://github.com/scwang90/SmartRefreshLayout/blob/master/art/md_property.md
博客地址:Android智能下拉刷新框架-SmartRefreshLayout
本文地址:https://blog.csdn.net/weixin_35691921/article/details/106899954
推荐阅读
-
每天记录学习的新知识 :鸿洋的RecyclerView BaseAdapter
-
OpenCV学习记录——2.使用OpenCV的Stitcher类来实现全景图拼接
-
【Python3.6爬虫学习记录】(七)使用Selenium+ChromeDriver爬取知乎某问题的回答
-
【Python】梯度下降法可视化学习过程记录(matplotlib绘制三维图形、ipywidgets包的使用等)
-
记录我的Swagger学习与使用
-
(一)基于Unity 3d UI框架学习记录,以及初识DOTween动画库的使用。
-
每天记录学习的新知识 : Android 混淆规则
-
每天记录学习的新知识 :SmartRefreshLayout使用
-
Yii2的相关学习记录,Gridview小部件使用及kartik-v/yii2-grid扩展(五),yii2gridview_PHP教程
-
记录学习嵌入式遇到的问题(一)手动编译链接单文件/多文件以及makefile与批处理文件的使用