博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中的动画详解系列【2】——飞舞的蝴蝶
阅读量:6202 次
发布时间:2019-06-21

本文共 2143 字,大约阅读时间需要 7 分钟。

这一篇来使用逐帧动画和补间动画来实现一个小例子,首先我们来看看Android中的补间动画。

Android中使用Animation代表抽象的动画类,该类包括下面几个子类:

AlphaAnimation:透明改变动画。

ScaleAnimation:大小缩放动画。

TranslateAnimation:位移变化动画。

RotateAnimation:旋转动画。

我们下面使用位移动画和逐帧动画来实现这个小例子,先看看运行效果:

蝴蝶挥动翅膀的逐帧动画文件:

界面布局文件:

具体逻辑及位移动画:

package com.example.butteryfly;import java.util.Timer;import java.util.TimerTask;import android.app.Activity;import android.graphics.drawable.AnimationDrawable;import android.os.Bundle;import android.os.Handler;import android.view.Display;import android.view.View;import android.view.View.OnClickListener;import android.view.animation.TranslateAnimation;import android.widget.ImageView;public class MainActivity extends Activity {		private float curX = 0;	private float curY = 30;		private float nextX = 0;	private float nextY = 0;		private int windowW = 0;	private int windowH = 0;		private ImageView imageView;		Handler handler = new Handler(){		public void handleMessage(android.os.Message msg) {			if(msg.what == 0x123){				if(nextX > windowW || nextY > windowH){					curX = nextX = 0;				}else{					nextX += 8;				}								nextY = curY + (float) (Math.random() * 20 - 10);				TranslateAnimation anim = new TranslateAnimation(curX, nextX, curY, nextY);				curX = nextX;				curY = nextY;				anim.setDuration(200);				imageView.startAnimation(anim);			}		};	};	@Override	protected void onCreate(Bundle savedInstanceState) {		super.onCreate(savedInstanceState);		setContentView(R.layout.activity_main);				imageView = (ImageView) findViewById(R.id.butterfly);				Display display = getWindowManager().getDefaultDisplay(); 		windowW = display.getWidth();		windowH = display.getHeight();				final AnimationDrawable butterfly = (AnimationDrawable) imageView.getBackground();		imageView.setOnClickListener(new OnClickListener() {						@Override			public void onClick(View arg0) {				butterfly.start();				new Timer().schedule(new TimerTask() {										@Override					public void run() {						handler.sendEmptyMessage(0x123);					}				}, 0, 200);			}		});	}}

转载于:https://www.cnblogs.com/lanzhi/p/6469028.html

你可能感兴趣的文章
Free SQLSever 2008的书
查看>>
[poj 1364]King[差分约束详解(续篇)][超级源点][SPFA][Bellman-Ford]
查看>>
排序算法
查看>>
Class hierarchy of UIResponder as well as subclasses of UIView and UIControl
查看>>
第8章 Service基础Activity与Service绑定
查看>>
编写安全 PHP 应用程序的七个习惯
查看>>
IOT(Index Organized Table)
查看>>
ORM for Net主流框架汇总与效率测试
查看>>
Seen.js – 使用 SVG 或者 Canvas 渲染 3D 场景
查看>>
Python自动化运维工具fabric的安装
查看>>
您不能在64-位可执行文件上设置DEP属性?
查看>>
一个屌丝程序猿的人生(二十七)
查看>>
[php入门] 4、HTML基础入门一篇概览
查看>>
linux下安装dovecot
查看>>
MySQL查询优化之explain的深入解析
查看>>
spring中用到哪些设计模式
查看>>
搜索引擎蜘蛛爬虫原理
查看>>
HTTPS 原理解析
查看>>
hiveql函数笔记(二)
查看>>
ALSA lib调用实例
查看>>