Table of Contents
Android Animation Category
Comparison between attribute animation and tweening animation
ValueAnimator
Uses of ValueAnimator
System TypeEvaluator
Home Web Front-end HTML Tutorial Android Property AnimationProperty Animation Series One ValueAnimator_html/css_WEB-ITnose

Android Property AnimationProperty Animation Series One ValueAnimator_html/css_WEB-ITnose

Jun 24, 2016 am 11:43 AM

Android Animation Category

Many apps on the market use animation effects, and good animation effects can improve the user experience. So what animation mechanisms does the Android system have?
1. Frame-by-frame animation. The working principle of frame-by-frame animation is very simple. In fact, it is to split a complete animation into separate pictures, and then connect them together for playback, similar to the working principle of cartoons.
2. Tweened animation allows you to perform a series of animation operations on View, including fade in and fade out, scaling, translation, and rotation.
3. Property Animation Property Animation can achieve more dazzling animation effects by changing the properties of objects.

Comparison between attribute animation and tweening animation

1. Tweening animation only changes the position and realistic effect of the View, but cannot change its attributes. For example, if a Button is moved using tweening animation and then clicked again, it will not respond to the click event, but attribute animation can do this.
2. The objects of tweening animation are only limited to View, while the objects of attribute animation are not limited to View, but affect all objects. For example: attribute animation can change the color value, but tweening animation cannot do this.

ValueAnimator

ValueAnimator is an important class in attribute animation. It uses a time loop mechanism internally to calculate the animation transition between values. We only need to change the initial value and the end value are provided to ValueAnimator, and tell it how long the animation needs to run, then ValueAnimator will automatically help us complete the smooth transition from the initial value to the end value. Let's take a look at its usage through an example. The usage of ValueAnimator is very simple:

private void startAnimation() {        ValueAnimator animator = ValueAnimator.ofInt(0, 20,0);        //为了看到动画值的变化,这里添加了动画更新监听事件来打印动画的当前值        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {            @Override            public void onAnimationUpdate(ValueAnimator animation) {                int value = (int) animation.getAnimatedValue();                Log.e("TAG", "the value is " + value);            }        });        animator.setDuration(1000);//动画时间        animator.start();//启动动画    }
Copy after login

ValueAnimator ofInt (int... values); There can be one or more parameters. However, there are usually more than two. If it is represented by two parameters: the value changes from the first parameter to the second parameter over time. If there are more than three parameters: changes over time between these values. Look at the above print result as follows:

ValueAnimator has other methods. For example, if you need an animation change of floating point data, you can use the following:

ValueAnimator animator = ValueAnimator.ofFloat(0f,10.5f,5.0f,0f);        animator.setDuration(500);//动画时间        animator.start();//启动动画
Copy after login

Change the color value Animation

ValueAnimator animator = ValueAnimator.ofArgb(0x00ffff,0x00ffee);        animator.setDuration(500);//动画时间        animator.start();//启动动画
Copy after login

Animation that changes a generic value ValueAnimator animator = ValueAnimator.ofObject(). Will talk about it below.

Uses of ValueAnimator

You may be surprised that you didn’t see where it is used in the examples above? Don't worry, let me give you an example to prove its usefulness. Draw a straight line dynamically on the phone screen.

package com.xjp.animations;import android.animation.TypeEvaluator;import android.animation.ValueAnimator;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.os.Bundle;import android.support.v7.app.ActionBarActivity;import android.util.AttributeSet;import android.view.View;import android.view.ViewGroup;public class MainActivity extends ActionBarActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        ViewGroup parent = (ViewGroup) findViewById(R.id.parent);        parent.addView(new SingleLine(this));    }    private class SingleLine extends View {        private Paint mPaint;        private float x = 0;        private float y = 150;        public SingleLine(Context context) {            super(context);            mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);            mPaint.setColor(Color.RED);        }        public SingleLine(Context context, AttributeSet attrs) {            super(context, attrs);            mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);            mPaint.setColor(Color.RED);        }        public SingleLine(Context context, AttributeSet attrs, int defStyleAttr) {            super(context, attrs, defStyleAttr);        }        @Override        protected void onDraw(Canvas canvas) {            if (0 == x) {                startAnimation();            }            canvas.drawLine(0, y, x, x + y, mPaint);        }        private void startAnimation() {            ValueAnimator animator = ValueAnimator.ofObject(new SingleLineEvaluator(), 0, 500);            animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {                @Override                public void onAnimationUpdate(ValueAnimator animation) {                    float i = (float) animation.getAnimatedValue();                    x = i;                    //不断的刷新UI                    invalidate();                }            });            animator.setDuration(2000);            animator.start();        }    }    private class SingleLineEvaluator implements TypeEvaluator {        @Override        public Object evaluate(float fraction, Object startValue, Object endValue) {            return fraction * (((Number) endValue).floatValue() - ((Number) startValue).floatValue());        }    }}
Copy after login

We used ValueAnimator animator = ValueAnimator.ofObject (TypeEvaluator evaluator, Object… values). The first parameter of this method is the animation transition algorithm class, and the following parameters are Animation transition value.
Here we mainly explain the TypeEvaluator type: the ofObject() method is different from ofInt() and ofFloat(). You need to implement TypeEvaluator yourself, while the other two method systems help implement their methods, namely the IntEvaluator and FloatEvaluator types.
Take a look at the implementation of FloatEvaluator as follows:

public class FloatEvaluator implements TypeEvaluator {    public Object evaluate(float fraction, Object startValue, Object endValue) {        float startFloat = ((Number) startValue).floatValue();        return startFloat + fraction * (((Number) endValue).floatValue() - startFloat);    }}
Copy after login

As you can see, FloatEvaluator implements the TypeEvaluator interface and then overrides the evaluate() method. Three parameters are passed in to the evaluate() method. The first parameter, fraction, is very important. This parameter is used to indicate the completion of the animation (the value of fraction changes between 0 and 1). We should calculate the current value based on it. What should be the value of the animation? The second and third parameters represent the initial value and end value of the animation respectively. Then the logic of the above code is relatively clear. Subtract the initial value from the end value, calculate the difference between them, then multiply it by the coefficient of fraction, plus the initial value, then you will get the value of the current animation.

Then let’s take a look at the TypeEvaluator we implemented

private class SingleLineEvaluator implements TypeEvaluator {        @Override        public Object evaluate(float fraction, Object startValue, Object endValue) {            return fraction * (((Number) endValue).floatValue() - ((Number) startValue).floatValue());        }    }
Copy after login

The interface method evaluate implements the linear straight line algorithm. y=n*x;

System TypeEvaluator

There are the following types of built-in TypeEvaluators in the system, which can be used directly in the code.

ArgbEvaluator: This evaluator can be used to perform interpolation between types of integer values ​​representing ARGB colors.
FloatEvaluator: This evaluator can be used to perform interpolation between floating point values.
IntEvaluator: This evaluator can be used to perform interpolation between values ​​of type int.
RectEvaluator: This evaluator can be used to perform interpolation of rectangular values ​​between types.

Next section: Learning ObjectAnimator

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles