我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android自定义加载loading view动画组件

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android自定义加载loading view动画组件

在github上找的一个有点酷炫的loading动画https://github.com/Fichardu/CircleProgress 

我写写使用步骤 

自定义view(CircleProgress )的代码 


package com.hysmarthotel.view;
import com.hysmarthotel.roomcontrol.R;
import com.hysmarthotel.util.EaseInOutCubicInterpolator;
import android.animation.TimeInterpolator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Point;
import android.util.AttributeSet;
import android.view.View;
import android.view.animation.AnimationUtils;
public class CircleProgress extends View {
 private static final int RED = 0xFFE5282C;
 private static final int YELLOW = 0xFF1F909A;
 private static final int BLUE = 0xFFFC9E12;
 private static final int COLOR_NUM = 3;
 private int[] COLORS;
 private TimeInterpolator mInterpolator = new EaseInOutCubicInterpolator();
 private final double DEGREE = Math.PI / 180;
 private Paint mPaint;
 private int mViewSize;
 private int mPointRadius;
 private long mStartTime;
 private long mPlayTime;
 private boolean mStartAnim = false;
 private Point mCenter = new Point();
 private ArcPoint[] mArcPoint;
 private static final int POINT_NUM = 15;
 private static final int DELTA_ANGLE = 360 / POINT_NUM;
 private long mDuration = 3600;
 public CircleProgress(Context context) {
  super(context);
  init(null, 0);
 }
 public CircleProgress(Context context, AttributeSet attrs) {
  super(context, attrs);
  init(attrs, 0);
 }
 public CircleProgress(Context context, AttributeSet attrs, int defStyle) {
  super(context, attrs, defStyle);
  init(attrs, defStyle);
 }
 private void init(AttributeSet attrs, int defStyle) {
  mArcPoint = new ArcPoint[POINT_NUM];
  mPaint = new Paint();
  mPaint.setAntiAlias(true);
  mPaint.setStyle(Paint.Style.FILL);
  TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.CircleProgress, defStyle, 0);
  int color1 = a.getColor(R.styleable.CircleProgress_color1, RED);
  int color2 = a.getColor(R.styleable.CircleProgress_color2, YELLOW);
  int color3 = a.getColor(R.styleable.CircleProgress_color3, BLUE);
  a.recycle();
  COLORS = new int[]{color1, color2, color3};
 }
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  int defaultSize = getResources().getDimensionPixelSize(R.dimen.default_circle_view_size);
  int width = getDefaultSize(defaultSize, widthMeasureSpec);
  int height = getDefaultSize(defaultSize, heightMeasureSpec);
  mViewSize = Math.min(width, height);
  setMeasuredDimension(mViewSize, mViewSize);
  mCenter.set(mViewSize / 2, mViewSize / 2);
  calPoints(1.0f);
 }
 @Override
 protected void onDraw(Canvas canvas) {
  canvas.save();
  canvas.translate(mCenter.x, mCenter.y);
  float factor = getFactor();
  canvas.rotate(36 * factor);
  float x, y;
  for (int i = 0; i < POINT_NUM; ++i) {
   mPaint.setColor(mArcPoint[i].color);
   float itemFactor = getItemFactor(i, factor);
   x = mArcPoint[i].x - 2 * mArcPoint[i].x * itemFactor;
   y = mArcPoint[i].y - 2 * mArcPoint[i].y * itemFactor;
   canvas.drawCircle(x, y, mPointRadius, mPaint);
  }
  canvas.restore();
  if (mStartAnim) {
   postInvalidate();
  }
 }
 private void calPoints(float factor) {
  int radius = (int) (mViewSize / 3 * factor);
  mPointRadius = radius / 12;
  for (int i = 0; i < POINT_NUM; ++i) {
   float x = radius * -(float) Math.sin(DEGREE * DELTA_ANGLE * i);
   float y = radius * -(float) Math.cos(DEGREE * DELTA_ANGLE * i);
   ArcPoint point = new ArcPoint(x, y, COLORS[i % COLOR_NUM]);
   mArcPoint[i] = point;
  }
 }
 private float getFactor() {
  if (mStartAnim) {
   mPlayTime = AnimationUtils.currentAnimationTimeMillis() - mStartTime;
  }
  float factor = mPlayTime / (float) mDuration;
  return factor % 1f;
 }
 private float getItemFactor(int index, float factor) {
  float itemFactor = (factor - 0.66f / POINT_NUM * index) * 3;
  if (itemFactor < 0f) {
   itemFactor = 0f;
  } else if (itemFactor > 1f) {
   itemFactor = 1f;
  }
  return mInterpolator.getInterpolation(itemFactor);
 }
 public void startAnim() {
  mPlayTime = mPlayTime % mDuration;
  mStartTime = AnimationUtils.currentAnimationTimeMillis() - mPlayTime;
  mStartAnim = true;
  postInvalidate();
 }
 public void reset() {
  stopAnim();
  mPlayTime = 0;
  postInvalidate();
 }
 public void stopAnim() {
  mStartAnim = false;
 }
 public void setInterpolator(TimeInterpolator interpolator) {
  mInterpolator = interpolator;
 }
 public void setDuration(long duration) {
  mDuration = duration;
 }
 public void setRadius(float factor) {
  stopAnim();
  calPoints(factor);
  startAnim();
 }
 static class ArcPoint {
  float x;
  float y;
  int color;
  ArcPoint(float x, float y, int color) {
   this.x = x;
   this.y = y;
   this.color = color;
  }
 }
}

EaseInOutCubicInterpolator是自定义view(CircleProgress )中要是用的一个工具 


package com.hysmarthotel.util;
import android.animation.TimeInterpolator;
public class EaseInOutCubicInterpolator implements TimeInterpolator {
 @Override
 public float getInterpolation(float input) {
  if ((input *= 2) < 1.0f) {
   return 0.5f * input * input * input;
  }
  input -= 2;
  return 0.5f * input * input * input + 1;
 }
}

在activity中的调用(还有一些其他用法可以自己看看github上的源代码) 


mProgressView = (CircleProgress)findViewById(R.id.progress_vie);
mProgressView.startAnim(); //开始
mProgressView.stopAnim(); //结束
mProgressView.setRadius(factor); //半径
mProgressView.reset(); //复原

在xml文件中的布局 


<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:circleprogress="http://schemas.android.com/apk/res/com.hysmarthotel.roomcontrol"  //这个地方记得要加 //包名
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@drawable/bg1" >
 <com.hysmarthotel.view.CircleProgress                   //类名
  android:id="@+id/progress_vie"
  android:layout_x="350.5px"
  android:layout_y="150.0px"
  android:layout_width="1140.0px"
  android:layout_height="700.0px"
  circleprogress:color1="@android:color/holo_red_light"   //这些参数就是通过xmlns:circleprogress,和attrs文件相关联的     circleprogress:color2="@android:color/holo_green_light"     circleprogress:color3="@android:color/holo_blue_light" />

自己在values目录中新建的attrs文件,这是与自定义view中自定义参数相关的


 <declare-styleable name="CircleProgress">
  <attr name="color1" format="reference|color"/>
  <attr name="color2" format="reference|color"/>
  <attr name="color3" format="reference|color"/>
 </declare-styleable> 

自己在values目录中新建的dimens文件,这个只是几个颜色参数


 <?xml version="1.0" encoding="utf-8"?>
<resources>
 <dimen name="activity_horizontal_margin">16dp</dimen>
 <dimen name="activity_vertical_margin">16dp</dimen>
 <dimen name="default_circle_view_size">200dp</dimen>
</resources>
您可能感兴趣的文章:Android仿ios加载loading菊花图效果Android通用LoadingView加载框架详解Android仿微信Viewpager-Fragment惰性加载(lazy-loading)Android自定义View实现loading动画加载效果Android实现退出界面弹出提示对话框Android加载loading对话框的功能及实例代码(不退出沉浸式效果)


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android自定义加载loading view动画组件

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android自定义加载loading view动画组件

在github上找的一个有点酷炫的loading动画https://github.com/Fichardu/CircleProgress 我写写使用步骤 自定义view(CircleProgress )的代码 package com.hy
2022-06-06

Android自定义View实现loading动画加载效果

项目开发中对Loading的处理是比较常见的,安卓系统提供的不太美观,引入第三发又太麻烦,这时候自己定义View来实现这个效果,并且进行封装抽取给项目提供统一的loading样式是最好的解决方式了。 先自定义一个View,继承自Linea
2022-06-06

Android自定义view实现阻尼效果的加载动画

效果:需要知识: 1. 二次贝塞尔曲线 2. 动画知识 3. 基础自定义view知识 先来解释下什么叫阻尼运动 阻尼振动是指,由于振动系统受到摩擦和介质阻力或其他能耗而使振幅随时间逐渐衰减的振动,又称减幅振动、衰减振动。[1] 不论是弹簧振
2022-06-06

Android自定义加载控件实现数据加载动画

本文实例为大家分享了Android自定义加载控件,第一次小人跑动的加载效果眼前一亮,相比传统的PrograssBar高大上不止一点,于是走起,自定义了控件LoadingView去实现动态效果,可直接在xml中使用,具体实现如下package
2022-06-06

Android开发中如何自定义加载动画

这篇文章主要为大家展示了“Android开发中如何自定义加载动画”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Android开发中如何自定义加载动画”这篇文章吧。一、demo简介1.效果展示如下
2023-06-29

Android中怎么自定义加载圈动画效果

这篇文章给大家介绍Android中怎么自定义加载圈动画效果,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。具体代码如下:package blog.csdn.net.mchenys.myanimationloading;i
2023-05-30

Android自定义view绘制圆环占比动画

一、实现效果图二、核心代码 1.自定义MyProgressView.javapackage com.czhappy.effectdemo.view; import android.content.Context; import androi
2022-06-06

Android自定义View播放Gif动画的示例

前言GIF是一种很常见的动态图片格式,在Android中它的使用场景非常多,大到启动页动画、小到一个Loading展示,都可以用GIF动画来完成,使用也很方便,直接从美工那边拿过来用就成。如果项目赶时间或者自定义原生动画太麻烦,GIF都是一
2023-05-30

Android自定义View绘图实现拖影动画

前几天在“Android绘图之渐隐动画”一文中通过画线实现了渐隐动画,但里面有个问题,画笔较粗(大于1)时线段之间会有裂隙,我又改进了一下。这次效果好多了。 先看效果吧:然后我们来说说基本的做法: 根据画笔宽度,计算每一条线段两个顶点对应
2022-06-06

Android自定义View实现动画效果详解

这篇文章主要为大家详细介绍了Android如何通过自定义View实现动画效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下
2023-02-02

Android自定义View绘图实现渐隐动画

实现了一个有趣的小东西:使用自定义View绘图,一边画线,画出的线条渐渐变淡,直到消失。效果如下图所示:用属性动画或者渐变填充(Shader)可以做到一笔一笔的变化,但要想一笔渐变(手指不抬起边画边渐隐),没在Android中找到现成的AP
2022-06-06

Android自定义View实现水波纹引导动画

一、实现效果图关于贝塞尔曲线 二、实现代码 1.自定义viewpackage com.czhappy.showintroduce.view; import android.content.Context; import android.gr
2022-06-06

Android 自定义view实现水波纹动画效果

在实际的开发中,很多时候还会遇到相对比较复杂的需求,比如产品妹纸或UI妹纸在哪看了个让人兴奋的效果,兴致高昂的来找你,看了之后目的很明确,当然就是希望你能给她;在这样的关键时候,身子板就一定得硬了,可千万别说不行,爷们儿怎么能说不行呢;好了
2023-05-31

Android自定义View仿微博运动积分动画效果

自定义View一直是自己的短板,趁着公司项目不紧张的时候,多加强这方面的练习。这一系列文章主要记录自己在自定义View的学习过程中的心得与体会。 刷微博的时候,发现微博运动界面,运动积分的显示有一个很好看的动画效果。OK,就从这个开始我的自
2022-06-06

layui table数据加载动画的自定义与实现(自定义layui table数据加载动画的技巧)

layuitable提供数据加载动画,可自定义以匹配场景或风格。自定义技巧:使用CSS定义加载图标或动画效果,并将其应用于表容器。使用JavaScript创建自定义加载动画函数,并将其指定在表配置中。集成第三方库简化动画创建。实施步骤:创建自定义动画。覆盖默认加载动画。加载数据时,指定的加载动画将显示。
layui table数据加载动画的自定义与实现(自定义layui table数据加载动画的技巧)
2024-04-02

Android使用自定义View绘制渐隐渐现动画

实现了一个有趣的小东西:使用自定义View绘图,一边画线,画出的线条渐渐变淡,直到消失。效果如下图所示: 用属性动画或者渐变填充(Shader)可以做到一笔一笔的变化,但要想一笔渐变(手指不抬起边画边渐隐),没在Android中找到现成的A
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录