Android 动画 ValueAnimator(四)

2024-01-11 00:08

本文主要是介绍Android 动画 ValueAnimator(四),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一.概述

这篇我们来看看另外一个函数ofObject,之前我们见识过ofInt和ofFloat,这两个函数都是变化基本数据类型的,而今天讲的这个函数可以变化任意类型,我们看看怎么用。

二.实例

1.简单使用

 public static ValueAnimator ofObject(TypeEvaluator evaluator, Object... values){}

这个方法接收两个参数,第一个是一个Evaluator对象,用来规定我们给定的对象是如何变化的,第二个参数是可变的,代表我们需要变化的值。

下面我们先看一个效果图,然后进行讲解:

这里写图片描述

当我们开启动画的时候,textview中的文字加速从A变化到Z。

  ValueAnimator animator = ValueAnimator.ofObject(new CharEvaluator(),new Character('A'),new Character('Z'));animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {@Overridepublic void onAnimationUpdate(ValueAnimator animation) {char value = (char) animation.getAnimatedValue();textView.setText(String.valueOf(value));}});animator.setInterpolator(new AccelerateInterpolator());animator.setDuration(10000);animator.start();

下面我们看看CharEvaluator是如何定义的:

public class CharEvaluator implements TypeEvaluator<Character> {@Overridepublic Character evaluate(float fraction, Character startValue, Character endValue) {int startInt = startValue;int endInt =  endValue;int result = (int) (startInt+fraction*(endInt - startInt));char c = (char) result;return c;}
}

代码很简单,我就不讲了。大家应该明白ofObject这个函数是如何使用的了吧。

2.高级使用
接下来我们看看高级使用。

这里写图片描述

先定义一个Point类

public class Point {private float radius;public Point(float radius){this.radius = radius;}public float getRadius(){return radius;}
}

然后是我们自定义的View:

public class CircleView extends View {private Point point;private Paint paint;public CircleView(Context context) {super(context);init();}public CircleView(Context context, AttributeSet attrs) {super(context, attrs);init();}/*** 设置画笔*/public void init(){paint = new Paint();paint.setColor(Color.RED);paint.setAntiAlias(true);paint.setStyle(Paint.Style.FILL);}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);//必须要判断,因为第一次point是空的,我们实在doAnim方法里面实例化的if(point!=null) {//画一个圆,半径是从point类获得的canvas.drawCircle(300, 300, point.getRadius(), paint);}}public void doAnim(){ValueAnimator animator = ValueAnimator.ofObject(new CircleEvaluator(),new Point(0),new Point(200));animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {@Overridepublic void onAnimationUpdate(ValueAnimator animation) {point = (Point) animation.getAnimatedValue();invalidate();}});animator.setDuration(2000);animator.setInterpolator(new BounceInterpolator());animator.start();}
}

接下来看看CircleEvaluator是如何实现的:

public class CircleEvaluator implements TypeEvaluator<Point> {@Overridepublic Point evaluate(float fraction, Point startValue, Point endValue) {float start = startValue.getRadius();float end =  endValue.getRadius();float result = (start+fraction*(end - start));return new Point(result);}
}

最后看看最没有技术含量的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:fitsSystemWindows="true"tools:context="com.example.broadcasedemo.MainActivity"><Button
        android:id="@+id/button"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="start"android:onClick="start"/><com.example.broadcasedemo.CircleView
        android:id="@+id/circleview"android:layout_centerInParent="true"android:layout_width="wrap_content"android:layout_height="wrap_content"/>
</RelativeLayout>

这篇关于Android 动画 ValueAnimator(四)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Android协程高级用法大全

《Android协程高级用法大全》这篇文章给大家介绍Android协程高级用法大全,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友跟随小编一起学习吧... 目录1️⃣ 协程作用域(CoroutineScope)与生命周期绑定Activity/Fragment 中手

Android 缓存日志Logcat导出与分析最佳实践

《Android缓存日志Logcat导出与分析最佳实践》本文全面介绍AndroidLogcat缓存日志的导出与分析方法,涵盖按进程、缓冲区类型及日志级别过滤,自动化工具使用,常见问题解决方案和最佳实... 目录android 缓存日志(Logcat)导出与分析全攻略为什么要导出缓存日志?按需过滤导出1. 按

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期

Android ClassLoader加载机制详解

《AndroidClassLoader加载机制详解》Android的ClassLoader负责加载.dex文件,基于双亲委派模型,支持热修复和插件化,需注意类冲突、内存泄漏和兼容性问题,本文给大家介... 目录一、ClassLoader概述1.1 类加载的基本概念1.2 android与Java Class

Android DataBinding 与 MVVM使用详解

《AndroidDataBinding与MVVM使用详解》本文介绍AndroidDataBinding库,其通过绑定UI组件与数据源实现自动更新,支持双向绑定和逻辑运算,减少模板代码,结合MV... 目录一、DataBinding 核心概念二、配置与基础使用1. 启用 DataBinding 2. 基础布局

Android ViewBinding使用流程

《AndroidViewBinding使用流程》AndroidViewBinding是Jetpack组件,替代findViewById,提供类型安全、空安全和编译时检查,代码简洁且性能优化,相比Da... 目录一、核心概念二、ViewBinding优点三、使用流程1. 启用 ViewBinding (模块级

Android学习总结之Java和kotlin区别超详细分析

《Android学习总结之Java和kotlin区别超详细分析》Java和Kotlin都是用于Android开发的编程语言,它们各自具有独特的特点和优势,:本文主要介绍Android学习总结之Ja... 目录一、空安全机制真题 1:Kotlin 如何解决 Java 的 NullPointerExceptio

Kotlin Compose Button 实现长按监听并实现动画效果(完整代码)

《KotlinComposeButton实现长按监听并实现动画效果(完整代码)》想要实现长按按钮开始录音,松开发送的功能,因此为了实现这些功能就需要自己写一个Button来解决问题,下面小编给大... 目录Button 实现原理1. Surface 的作用(关键)2. InteractionSource3.

使用WPF实现窗口抖动动画效果

《使用WPF实现窗口抖动动画效果》在用户界面设计中,适当的动画反馈可以提升用户体验,尤其是在错误提示、操作失败等场景下,窗口抖动作为一种常见且直观的视觉反馈方式,常用于提醒用户注意当前状态,本文将详细... 目录前言实现思路概述核心代码实现1、 获取目标窗口2、初始化基础位置值3、创建抖动动画4、动画完成后