动画(补间动画,帧动画,切换Activity动画,属性动画)

image.png

DrawableAnimation 代表的动画默认是不播放的,必须在程序中启动动画播放才可以。
播放 start()
停止 stop()
实现:DrawableAnimation 通过把图片设置成ImageView的背景实现动画效果
代码通过获取tup的背景(就是anim里面的帧)获取到强转然后可以开启(start)关闭(stop)
AnimationDrawable drawable=(AnimationDrawable) tup.getBackground();


image.png

一旦在程序中通过通过AnimationUtils得到代表补间动画的Animation之后,接下来就可以调用View的startAnimation()方法开始对View执行动画了
Animation anim = AnimationUtils
.loadAnimation(context, R.anim.donghua);
view.startAnimation(anim);
注:imageView1.startAnimation(animation);当前动画没有执行完就会被下一个给替换掉
animator.start();方法可以一起同时用

来看代码补间动画

package com.example.tweenanimation;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.RotateAnimation;
import android.view.animation.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;

public class MainActivity extends Activity {
    ImageView imageView1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        imageView1 = (ImageView) findViewById(R.id.imageView1);
    }

    public void AlphaAnimation1(View v) {
        // 创建AlphaAnimation(透明动画)的对象参数1是开始状态2时结束状态
        AlphaAnimation animation = new AlphaAnimation(1, 0);
        // 设置时间
        animation.setDuration(3000);
        // 设置循环次数
        animation.setRepeatCount(1);
        // 设置循环模式Animation.REVERSE是把循环第二个的AlphaAnimation参数反过来
        animation.setRepeatMode(Animation.REVERSE);
        // 开启动画
        imageView1.startAnimation(animation);//给图片设置动画
    }

    public void ScaleAnimation1(View v) {
        // 1是原始大小0是没有
        ScaleAnimation scaleAnimation = new ScaleAnimation(1, 2, 1, 2,
                Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
                0.5f);
        scaleAnimation.setDuration(2000);
        imageView1.startAnimation(scaleAnimation);

    }

    public void TranslateAnimation1(View v) {
        //0是坐标
        TranslateAnimation animation = new TranslateAnimation(0, 0, 0, 100);
        animation.setDuration(2000);
        imageView1.startAnimation(animation);
    }

    public void RotateAnimation1(View v) {
        RotateAnimation rotateAnimation = new RotateAnimation(1, 360, 1, 0.5f,
                1, 0.5f);
        rotateAnimation.setDuration(3000);
        imageView1.startAnimation(rotateAnimation);
    }
     public void jihe(View v) {
        // 创建集合对象
        AnimationSet set = new AnimationSet(true);
        AlphaAnimation animation = new AlphaAnimation(1, 0);
        TranslateAnimation animation2 = new TranslateAnimation(0, 0, 0, 100);
        set.addAnimation(animation);
        set.addAnimation(animation2);
        set.setDuration(3000);
        imageView1.startAnimation(set);
    }

    public void caru(View v) {
        TranslateAnimation animation = new TranslateAnimation(0, 0, 0, 100);
        animation.setDuration(2000);
        animation.setInterpolator(new AccelerateInterpolator());// 开始较慢后来快
        animation.setInterpolator(new CycleInterpolator(2));// 正弦曲线改变
        imageView1.startAnimation(animation);

    }
}

xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="AlphaAnimation1"
        android:text="透明度动画" />

    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="ScaleAnimation1"
        android:text="大小缩放动画" />

    <Button
        android:id="@+id/button3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="TranslateAnimation1"
        android:text="位移变化动画" />

    <Button
        android:id="@+id/button4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="RotateAnimation1"
        android:text="旋转动画" />

    <Button
        android:id="@+id/button5"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="jihe"
        android:text="动画集合" />

    <Button
        android:id="@+id/button6"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="动画插入器"
        android:onClick="caru" />
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

上面都是补间动画四个效果

帧动画

package com.example.frameanimation;

import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class MainActivity extends Activity {
AnimationDrawable drawable;

ImageView tup;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tup=(ImageView) findViewById(R.id.tup);
        
        drawable=(AnimationDrawable) tup.getBackground();
        
        
    }
    public void open(View v){
        drawable.start();
    
        
    }
public void close(View v){
    drawable.stop();
    }
}

xml写

<LinearLayout 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"
    tools:context="${relativePackage}.${activityClass}"
    android:background="#999" 
    android:orientation="vertical">

    <ImageView
        android:id="@+id/tup"
         android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@anim/fram"
        />
    <Button 
         android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="开始"
    android:onClick="open"
        />
    <Button 
         android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="结束"
    android:onClick="close"
        />
</LinearLayout>

在res下新建一个文件夹anim然后写xml文件

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/pp_card_video_play_anm1" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm2" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm3" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm4" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm5" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm6" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm7" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm8" android:duration="100"></item>
<item android:drawable="@drawable/pp_card_video_play_anm9" android:duration="100"></item>
</animation-list>

结合使用通过anim文件xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha android:fromAlpha="1"
        android:toAlpha="0.1"
        android:duration="3000"/>
<rotate
    android:fromDegrees="0"
    android:toDegrees="1800"
    android:duration="5000"
    ></rotate>
<scale android:fromXScale="1"
    android:toXScale="0.3"
    android:fromYScale="1"
    android:toYScale="0.3"
    android:duration="3000" />
<translate
    android:fromXDelta="0"
    android:toXDelta="400"
    android:duration="4000"></translate>
</set>

在代码用
Animation anim=AnimationUtils.loadAnimation(this, R.anim.jiehe);得到对象
tup2.startAnimation(anim);设置图片的动画

切换Activity动画

startActivity(new Intent(this,Main2Activity.class));
    overridePendingTransition(R.anim.enter, R.anim.tui);//先退后进

enter的xml代码

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="100%p"
        android:toXDelta="0%p"
        android:duration="1000"/>
</set>

tui的xml代码

<?xml version="1.0" encoding="utf-8"?>
<translate  xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromXDelta="0%p"
    android:toXDelta="-100%p"
    android:duration="1000">
</translate>

这就设置了开启另一个页面的动画
然后在设置一下另一个页面返回动画
当页面切换时就是页面暂停所以在onPause写,当页面快要被停止销毁了写就没用了

    @Override
    protected void onPause() {
        // TODO Auto-generated method stub
        overridePendingTransition(R.anim.enter2, R.anim.tui2);
        super.onPause();
    }

enter2

<?xml version="1.0" encoding="utf-8"?>
<translate android:fromXDelta="-100%p" xmlns:android="http://schemas.android.com/apk/res/android"
    android:toXDelta="0%p"
    android:duration="1000">
    

</translate>

tui2

<?xml version="1.0" encoding="utf-8"?>
<translate
    android:fromXDelta="0%p" xmlns:android="http://schemas.android.com/apk/res/android"
    android:toXDelta="100%p"
    android:duration="1000"
    >
    

</translate>

效果就是像Viewpager一样水平切换

属性动画

image.png
image.png

image.png

ObjectAnimator
ObjectAnimator object = ObjectAnimator.ofFloat(btObject, "RotationY", 360f);
object.setDuration(2000);
object.start();

属性动画也可以用AnimationSet动画集合来执行多个动画

package com.example.frameanimation;

import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.animation.ValueAnimator.AnimatorUpdateListener;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;

public class Main2Activity extends Activity {
    ImageView imageView1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        imageView1 = (ImageView) findViewById(R.id.imageView1);
    }

    public void zhi(View v) {
        ValueAnimator ofFloat = ValueAnimator.ofFloat(0, 200);//可以穿多个0-200-360...
        ofFloat.setTarget(imageView1);// 设置目标
        ofFloat.setDuration(3000);// 延迟时间
        ofFloat.addUpdateListener(new AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                // TODO Auto-generated method stub
                float animatedValue = (Float) animation.getAnimatedValue();
                imageView1.setTranslationX(animatedValue);// 移动
                imageView1.setRotation(animatedValue);
            }
        });
        ofFloat.start();// 开启
    }

    public void ob(View v) {
        // 参数1:使用动画的对象,2是使用动画的属性名,3是更改的值Float..
        // ObjectAnimator.ofFloat(imageView1, "alpha", 0,
        // 1).setDuration(3000).start();

        // 2如果是随便写的话不起任何效果
        ObjectAnimator animator = ObjectAnimator.ofFloat(imageView1, "aaa", 0,
                1);

        // 当你的动画发生改变时我们要实现的功能
        animator.addUpdateListener(new AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                // 动画运行时我们要拿到中间值animatedValue
                float animatedValue = (Float) animation.getAnimatedValue();
                // 当你的动画更改是我们要实现其他的功能
                imageView1.setScaleX(animatedValue);// 设置了x的0-1缩放瘦正常
                imageView1.setScaleY(animatedValue);
                
                imageView1.setAlpha(animatedValue);// 设置了隐藏
            }
        });
        animator.setDuration(3000);
        animator.start();
    }
}

xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="值动画"
        android:onClick="zhi" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        android:onClick="ob" />

</LinearLayout>

// AnimatorInflater.loadAnimator(context, id);//用来加载布局中属性动画
// 用他的对象调用settarget(控件)
android:oneshot="false"设置循环一次
set.setFillAfter(true);//设置最后一针为针
可以用setAnimationListener监听动画来监听动画的结束
Android Matrix动画详解
https://blog.csdn.net/flash129/article/details/8234599
除平移变换(Translate)外,旋转变换(Rotate)、缩放变换(Scale)和错切变换(Skew)都可以围绕一个中心点来进行,如果不指定,在默认情况下是围绕(0, 0)来进行相应的变换的
https://blog.csdn.net/zhanhong39/article/details/78956553
属性动画https://blog.csdn.net/u011200844/article/details/44594263
给动画设置监听setAnimationListener然后结束操作等

player.startAnimation(anim);
                anim.setAnimationListener(new AnimationListener() {
                    
                    @Override
                    public void onAnimationStart(Animation animation) {
                        // TODO Auto-generated method stub
                        
                    }
                    
                    @Override
                    public void onAnimationRepeat(Animation animation) {
                        // TODO Auto-generated method stub
                        
                    }
                    
                    @Override
                    public void onAnimationEnd(Animation animation) {
                        // TODO Auto-generated method stub
                        finish();
                    }
                });

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容

  • 1 背景 不能只分析源码呀,分析的同时也要整理归纳基础知识,刚好有人微博私信让全面说说Android的动画,所以今...
    未聞椛洺阅读 2,690评论 0 10
  • 引言:这篇文章简单介绍一下Android动画的基本写法和一些要注意的地方,帮助大家更加容易使用Android动画。...
    androidjp阅读 3,279评论 3 46
  • 最近工作比较清闲,所以想系统的复习和学习下自己比较短缺的知识,所以。。。 程序运行效果图: Android动画主要...
    小沈新手阅读 502评论 0 1
  • 动画分类: 逐帧动画(Frame)补间动画(Tween)属性动画(Property)(Android 3.0以后引...
    乌和兔阅读 413评论 0 6
  • 安卓动画目前共分为三种动画逐帧动画、补间动画和属性动画。 一、逐帧动画(frame-by-frame animat...
    V1tas阅读 412评论 0 1