PullToRefresh修改上拉下拉加载动画

2024-09-01 11:32

本文主要是介绍PullToRefresh修改上拉下拉加载动画,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

修改PullTuRefreshListView源码:
实现 动画加载:

第一步:

源码分析:

PullToRefrehListView 默认加载动画是很难看的:
这里写图片描述

默认是很难看的 但我们想要实现我们的效果怎么办?

分析源码:

找到PullRefreshListView 分析:

我们知道 上拉和下拉加载 动画无非是 pullToRefreshListView 中添加了头和脚, 而头和脚都是动画!!

PullToRefreshListView.java 两个动画类变量:

//定义  头部和尾部的加载动画private LoadingLayout mHeaderLoadingView;private LoadingLayout mFooterLoadingView;...//加载布局@Overrideprotected LoadingLayoutProxy createLoadingLayoutProxy(final boolean includeStart, final boolean includeEnd) {LoadingLayoutProxy proxy = super.createLoadingLayoutProxy(includeStart, includeEnd);if (mListViewExtrasEnabled) {final Mode mode = getMode();if (includeStart && mode.showHeaderLoadingLayout()) {//添加  头部动画 到listView中proxy.addLayout(mHeaderLoadingView);}if (includeEnd && mode.showFooterLoadingLayout()) {//添加  添加脚部动画  到listView中proxy.addLayout(mFooterLoadingView);}}return proxy;}
...

createLoadingLayoutProxy方法继承自抽象类PullToRefreshAdapterViewBase查看方法没有该方法继续父类查找,查找PullToRefreshAdapterViewBase父类PullToRefreshBase:


// We need to create now layouts nowmHeaderLayout = createLoadingLayout(context, Mode.PULL_FROM_START, a);mFooterLayout = createLoadingLayout(context, Mode.PULL_FROM_END, a);...//加载动画    布局----------protected LoadingLayout createLoadingLayout(Context context, Mode mode, TypedArray attrs) {LoadingLayout layout = mLoadingAnimationStyle.createLoadingLayout(context, mode,getPullToRefreshScrollDirection(), attrs);layout.setVisibility(View.INVISIBLE);return layout;}...//此处实现了我们需要  修改的动画方法:
//修改代码实现  自己的下载刷新动画LoadingLayout createLoadingLayout(Context context, Mode mode, Orientation scrollDirection, TypedArray attrs) {switch (this) {case ROTATE://旋转动画default://帧动画   frameAnimationLayout为     自定义动画类return new FrameAnimationLayout(context, mode, scrollDirection, attrs);//旋转动画   默认的动画
//                  return new RotateLoadingLayout(context, mode, scrollDirection, attrs);case FLIP:return new FlipLoadingLayout(context, mode, scrollDirection, attrs);}}

//自定义动画类 实现动画

package com.handmark.pulltorefresh.library.internal;import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.Drawable;import com.handmark.pulltorefresh.library.PullToRefreshBase;
import com.handmark.pulltorefresh.library.R;/*** Package_name:com.handmark.pulltorefresh.library.internal* Author:zhaoQiang* Email:zhao_hero@163.com* Date:2016/11/28  19:34** 帧动画  实现加载自定义的动画   实现的是帧动画*/
public class FrameAnimationLayout extends LoadingLayout{
//继承自 PullToRefreshListView提供的loadingLayout类private AnimationDrawable mAnimationDrawable;public FrameAnimationLayout(Context context, PullToRefreshBase.Mode mode,PullToRefreshBase.Orientation scrollDirection, TypedArray attrs) {super(context, mode, scrollDirection, attrs);mHeaderImage.setImageResource(R.drawable.ptr_animation);mAnimationDrawable = (AnimationDrawable) mHeaderImage.getDrawable();}@Overrideprotected int getDefaultDrawableResId() {//返回   自定义动画布局return R.drawable.ptr_animation;}@Overrideprotected void onLoadingDrawableSet(Drawable imageDrawable) {}@Overrideprotected void onPullImpl(float scaleOfLayout) {}@Overrideprotected void pullToRefreshImpl() {}//刷新的时候@Overrideprotected void refreshingImpl() {mAnimationDrawable.start();//开启动画}@Overrideprotected void releaseToRefreshImpl() {}@Overrideprotected void resetImpl() {}
}

anim.xml:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"android:oneshot="false"   ><item android:drawable="@drawable/ptr_img_0" android:duration="10"></item><item android:drawable="@drawable/ptr_img_1" android:duration="10"></item><item android:drawable="@drawable/ptr_img_2" android:duration="10"></item><item android:drawable="@drawable/ptr_img_3" android:duration="10"></item><item android:drawable="@drawable/ptr_img_4" android:duration="10"></item><item android:drawable="@drawable/ptr_img_5" android:duration="10"></item><item android:drawable="@drawable/ptr_img_6" android:duration="10"></item><item android:drawable="@drawable/ptr_img_7" android:duration="10"></item><item android:drawable="@drawable/ptr_img_8" android:duration="10"></item><item android:drawable="@drawable/ptr_img_9" android:duration="10"></item><item android:drawable="@drawable/ptr_img_10" android:duration="10"></item><item android:drawable="@drawable/ptr_img_11" android:duration="10"></item><item android:drawable="@drawable/ptr_img_12" android:duration="10"></item><item android:drawable="@drawable/ptr_img_13" android:duration="10"></item><item android:drawable="@drawable/ptr_img_14" android:duration="10"></item><item android:drawable="@drawable/ptr_img_15" android:duration="10"></item><item android:drawable="@drawable/ptr_img_16" android:duration="10"></item><item android:drawable="@drawable/ptr_img_17" android:duration="10"></item></animation-list>

这就完成了自定义下拉和上拉动画,修改部分源码以及自定义帧动画类,效果图:这里写图片描述

源码:
https://github.com/zqHero/PullToRefreshDemo

参考博客:

http://blog.csdn.net/plmmmmlq/article/details/50068717

这篇关于PullToRefresh修改上拉下拉加载动画的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1126810

相关文章

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Flutter 进阶:绘制加载动画

绘制加载动画:由小圆组成的大圆 1. 定义 LoadingScreen 类2. 实现 _LoadingScreenState 类3. 定义 LoadingPainter 类4. 总结 实现加载动画 我们需要定义两个类:LoadingScreen 和 LoadingPainter。LoadingScreen 负责控制动画的状态,而 LoadingPainter 则负责绘制动画。

两个月冲刺软考——访问位与修改位的题型(淘汰哪一页);内聚的类型;关于码制的知识点;地址映射的相关内容

1.访问位与修改位的题型(淘汰哪一页) 访问位:为1时表示在内存期间被访问过,为0时表示未被访问;修改位:为1时表示该页面自从被装入内存后被修改过,为0时表示未修改过。 置换页面时,最先置换访问位和修改位为00的,其次是01(没被访问但被修改过)的,之后是10(被访问了但没被修改过),最后是11。 2.内聚的类型 功能内聚:完成一个单一功能,各个部分协同工作,缺一不可。 顺序内聚:

如何在运行时修改serialVersionUID

优质博文:IT-BLOG-CN 问题 我正在使用第三方库连接到外部系统,一切运行正常,但突然出现序列化错误 java.io.InvalidClassException: com.essbase.api.base.EssException; local class incompatible: stream classdesc serialVersionUID = 90314637791991

用Unity2D制作一个人物,实现移动、跳起、人物静止和动起来时的动画:中(人物移动、跳起、静止动作)

上回我们学到创建一个地形和一个人物,今天我们实现一下人物实现移动和跳起,依次点击,我们准备创建一个C#文件 创建好我们点击进去,就会跳转到我们的Vision Studio,然后输入这些代码 using UnityEngine;public class Move : MonoBehaviour // 定义一个名为Move的类,继承自MonoBehaviour{private Rigidbo

android系统源码12 修改默认桌面壁纸--SRO方式

1、aosp12修改默认桌面壁纸 代码路径 :frameworks\base\core\res\res\drawable-nodpi 替换成自己的图片即可,不过需要覆盖所有目录下的图片。 由于是静态修改,则需要make一下,重新编译。 2、方法二Overlay方式 由于上述方法有很大缺点,修改多了之后容易遗忘自己修改哪些文件,为此我们采用另外一种方法,使用Overlay方式。

hibernate修改数据库已有的对象【简化操作】

陈科肇 直接上代码: /*** 更新新的数据并并未修改旧的数据* @param oldEntity 数据库存在的实体* @param newEntity 更改后的实体* @throws IllegalAccessException * @throws IllegalArgumentException */public void updateNew(T oldEntity,T newEntity

动画AnimationDrawable、转动

现实开发中:很多地方都用到 点击动画的特效; 本案例本人做了三个关于“动” 画 的效果; 先上图: 总体图: A: B: 1:点击图片按钮,效果是:图片闪动; 通过在xml中定义:标签:animation-list来实现点击动画的效果;  是否循环标签:oneshot ;   时间间隔标签:duration ; 要显示的图片标签:drawable ;

13 transition数组的动画使用

划重点 动画:transitiontransition-group :数组动画数组的 添加 / 删除 豆腐粉丝汤 清淡又健康 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><me

12 动画transition的使用2

划重点 Vue 动画:transition / transform在动画周期中执行动动画(上一篇是通过动画样式控制动画) 清蒸扇贝 <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><