Android下拉刷新PtrFrameLayout的使用实例代码
程序员文章站
2023-11-07 15:04:52
1.介绍:
可以包含所有的控件 :listview, gridview, scrollview, framelayout, 甚至 textview.
可以自...
1.介绍:
- 可以包含所有的控件 :listview, gridview, scrollview, framelayout, 甚至 textview.
- 可以自定义刷新头(这点非常实用)
- 使用简单方便
不足就是不支持上拉加载.
2.使用
首先添加依赖到项目
compile 'in.srain.cube:ultra-ptr:1.0.11'
在xml中使用
<in.srain.cube.views.ptr.ptrframelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/food_refreshlayout" android:layout_width="match_parent" android:layout_height="match_parent" app:ptr_resistance="1.7" //设置下拉的阻尼系数,值越大感觉越难下拉 app:ptr_ratio_of_header_height_to_refresh="1.2" //设置超过头部的多少时,释放可以执行刷新操作 app:ptr_duration_to_close="200" //:设置下拉回弹的时间 app:ptr_duration_to_close_header="300" //设刷新完成,头部回弹时间,注意和前一个进行区别 app:ptr_keep_header_when_refresh="true" //设置刷新的时候是否保持头部 app:ptr_pull_to_fresh="false"> //设置下拉过程中执行刷新,我们一般设置为false <scrollview android:layout_width="match_parent" android:layout_height="match_parent" > </scrollview> </in.srain.cube.views.ptr.ptrframelayout>
在代码中使用
在代码中使用非常简单,简单几部搞定:
1.找到控件,添加头部刷新布局
mfoodrefreshlayout = (ptrframelayout) findviewbyid(r.id.food_refreshlayout); //这里是一个自定义的头部刷新布局,自带的也有一个布局 new ptrdefaulthandler(); ptrclassicheader header = new ptrclassicheader(this); //将头布局添加 mfoodrefreshlayout.addptruihandler(header);
2.不仅仅是添加头布局,还需要设置到控件中 注:特别重要,不然没显示
mfoodrefreshlayout.setheaderview(header); //设置刷新头布局
3.给刷新控件设置下拉监听
mfoodrefreshlayout.setptrhandler(new ptrhandler() { @override public void onrefreshbegin(ptrframelayout frame) { //在这里写自己下拉刷新数据的请求 //需要结束刷新头 mfoodrefreshlayout.refreshcomplete(); } @override public boolean checkcandorefresh(ptrframelayout frame, view content, view header) { // 默认实现,根据实际情况做改动 return ptrdefaulthandler.checkcontentcanbepulleddown(frame, content, header); } });
3.自定义请求头
上面是对基本使用进行了介绍,相信大家在使用下拉刷新时都需要用到自定义布局,其实也很简单,在上面代码添加刷新头时就创建自定义的头部即可,下面对自定义头部的几个方法做简单介绍:
public class ptrclassicheader extends framelayout implements ptruihandler{ //实现接口 private imageview mpush; //在代码创建对象 public ptrclassicheader(context context) { super(context); initview(); } public ptrclassicheader(context context, attributeset attrs) { super(context, attrs); initview(); } public ptrclassicheader(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); initview(); } //初始化自定义布局文件 private void initview() { //这里加载自定义的布局文件 view header = layoutinflater.from(getcontext()).inflate(r.layout.item_push_header_layout, this); //找到布局内部的控件 mpush = (imageview) header.findviewbyid(r.id.header_iv); } //定义一个动画,方便下面的调用 public void initanim(){ objectanimator anim = objectanimator.offloat(mpush, "rotation", 0f, 180f); anim.setduration(500); anim.start(); } //初始化状态 @override public void onuireset(ptrframelayout frame) { //这个方法可以不用管 也可以在这里关闭动画 } //开始向下拉的时候调用 @override public void onuirefreshprepare(ptrframelayout frame) { initanim(); //这里可以执行动画效果 } //刷新过程时调用 @override public void onuirefreshbegin(ptrframelayout frame) { //可以不断的改变动画效果以及切换显示的控件 //判断是否可以刷新 if (frame.ispulltorefresh()) { mtitletextview.settext("释放刷新"); } else { mtitletextview.settext("下拉加载"); } } //刷新完成后调用,向上移动时调用 @override public void onuirefreshcomplete(ptrframelayout frame) { //可以不断的改变动画效果以及切换显示的控件 mtitletextview.settext("加载中..."); animationdrawable.stop(); //模拟动画 animationdrawable.start(); } //重复下拉 @override public void onuipositionchange(ptrframelayout frame, boolean isundertouch, byte status, ptrindicator ptrindicator) { //在同一次下拉中不断向上向下移动,这里可以不断改变显示效果 //示例代码: 可以当模板使用 final int moffsettorefresh = frame.getoffsettorefresh(); final int currentpos = ptrindicator.getcurrentposy(); //获取到下拉的高度 final int lastpos = ptrindicator.getlastposy(); //最大下拉的高度 //根据下拉的位置进行控件的显示 if (currentpos < moffsettorefresh && lastpos >= moffsettorefresh) { if (isundertouch && status == ptrframelayout.ptr_status_prepare) { crossrotatelinefrombottomundertouch(frame); //调用方法 } } else if (currentpos > moffsettorefresh && lastpos <= moffsettorefresh) { if (isundertouch && status == ptrframelayout.ptr_status_prepare) { crossrotatelinefromtopundertouch(frame); //调用方法 } } } //下拉到可以刷新时显示 private void crossrotatelinefromtopundertouch(ptrframelayout frame) { if (!frame.ispulltorefresh()) { mtitletextview.settext("释放刷新"); } } //动态改变文字 private void crossrotatelinefrombottomundertouch(ptrframelayout frame) { if (frame.ispulltorefresh()) { mtitletextview.settext("释放刷新"); } else { mtitletextview.settext("下拉加载"); } } } }
4.解决冲突
viewpager滑动冲突: 直接调用: disablewhenhorizontalmove()
如有不懂可查看:https://github.com/liaohuqiu/android-ultra-pull-to-refresh/blob/master/readme-cn.md
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 哪里的苹果最好吃,这几个地方你知道吗
下一篇: 素水饺怎么做好吃
推荐阅读
-
Android下拉刷新PtrFrameLayout的使用实例代码
-
Android使用OkHttp上传图片的实例代码
-
AngularJS使用ngOption实现下拉列表的实例代码
-
Android自定义单选多选下拉列表的实例代码
-
Android Timer使用的实例代码
-
Android实现三级联动下拉框 下拉列表spinner的实例代码
-
Android自定义控件ListView下拉刷新的代码
-
vue使用mint-ui实现下拉刷新和无限滚动的示例代码
-
3年以上勿进!最简单的Android自定义ListView下拉刷新与上拉加载,代码直接拿去用~
-
Android 使用fast-verification实现验证码填写功能的实例代码