Android实现蝴蝶动画,飞舞的蝴蝶 - Android中的动画详解系列_Linux编程_Linux公社-Linux系统门户网站...

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

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

AlphaAnimation:透明改变动画。

ScaleAnimation:大小缩放动画。

TranslateAnimation:位移变化动画。

RotateAnimation:旋转动画。

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

93a0aad4e727cb15585754c7d5c39a62.gif

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

android:oneshot="false">

android:oneshot="false">

界面布局文件:

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:background="@drawable/background"

>

android:id="@+id/butterfly"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@anim/butteryfly"

/>

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:background="@drawable/background"

>

android:id="@+id/butterfly"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@anim/butteryfly"

/>

具体逻辑及位移动画:

fb893e262de1e6a2375470c9e2d58750.png

packagecom.example.butteryfly;

importjava.util.Timer;

importjava.util.TimerTask;

importandroid.app.Activity;

importandroid.graphics.drawable.AnimationDrawable;

importandroid.os.Bundle;

importandroid.os.Handler;

importandroid.view.Display;

importandroid.view.View;

importandroid.view.View.OnClickListener;

importandroid.view.animation.TranslateAnimation;

importandroid.widget.ImageView;

publicclassMainActivityextendsActivity {

privatefloatcurX =0;

privatefloatcurY =30;

privatefloatnextX =0;

privatefloatnextY =0;

privateintwindowW =0;

privateintwindowH =0;

privateImageView imageView;

Handler handler = newHandler(){

publicvoidhandleMessage(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 = newTranslateAnimation(curX, nextX, curY, nextY);

curX = nextX;

curY = nextY;

anim.setDuration(200);

imageView.startAnimation(anim);

}

};

};

@Override

protectedvoidonCreate(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();

finalAnimationDrawable butterfly = (AnimationDrawable) imageView.getBackground();

imageView.setOnClickListener(newOnClickListener() {

@Override

publicvoidonClick(View arg0) {

butterfly.start();

newTimer().schedule(newTimerTask() {

@Override

publicvoidrun() {

handler.sendEmptyMessage(0x123);

}

}, 0,200);

}

});

}

}

0b1331709591d260c1c78e86d0c51c18.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值