欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

Java实现帧动画的实例代码

时间:2020-12-28 11:17:09|栏目:JAVA代码|点击:

本文讲述了Java实现帧动画的实例代码。分享给大家供大家参考,具体如下:

1、效果图

2、帧动画的简要代码

private ImageView bgAnimView; 
 private AnimationDrawable mAnimationDrawable; 
//初始化 
 mAnimationDrawable = new AnimationDrawable(); 
 bgAnimView = new ImageView(mContext); 
 bgAnimView.setBackgroundDrawable(getAnimationDrawable(mAnimationDrawable)); 
 params = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); 
 params.topMargin = Util.Div(176 + 58); 
 params.gravity = Gravity.CENTER_HORIZONTAL; 
 addView(bgAnimView, params); 
private AnimationDrawable getAnimationDrawable(AnimationDrawable mAnimationDrawable) { 
 int duration = 50; 
 mAnimationDrawable.addFrame(mContext.getResources().getDrawable(R.drawable.loading1), duration); 
 mAnimationDrawable.addFrame(mContext.getResources().getDrawable(R.drawable.loading2), duration); 
 mAnimationDrawable.addFrame(mContext.getResources().getDrawable(R.drawable.loading3), duration); 
 mAnimationDrawable.setOneShot(false); 
 return mAnimationDrawable; 
 } 
 //动画开始 
 public void animLoadingStart() { 
 this.setVisibility(View.VISIBLE); 
 if (mAnimationDrawable != null) { 
 mAnimationDrawable.start(); 
 } 
 } 
 //动画结束 
 public void animLoadingEnd() { 
 if (mAnimationDrawable != null) { 
 mAnimationDrawable.stop(); 
 } 

3、扩展:

//X轴平移 
 public void animY(int y, int nextY, int duration) { 
 LinearInterpolator ll = new LinearInterpolator(); //匀速 
 ObjectAnimator animator = ObjectAnimator.ofFloat(yourView, "translationY", 0, 300);//300若为负值,就是向上平移 
 animator.setDuration(duration); 
 animator.setInterpolator(ll); 
 animator.start(); 
 } 
//Y轴平移 
 public void animX(int x, int nextX, int duration) { 
 LinearInterpolator ll = new LinearInterpolator(); 
 ObjectAnimator animator = ObjectAnimator.ofFloat(yourView, "translationX", x, nextX); 
 animator.setDuration(duration); 
 animator.setInterpolator(ll); 
 animator.start(); 
 } 
//纵向压缩0.5倍 
 LinearInterpolator ll = new LinearInterpolator();//匀速 
 ScaleAnimation scaleAnimation = new ScaleAnimation(1, 1, 1, 0.5f);//默认从(0,0) 
 scaleAnimation.setDuration(500); 
 scaleAnimation.setInterpolator(ll); 
 scaleAnimation.setFillAfter(true); 
 chartView.startAnimation(scaleAnimation); 
//横向压缩0.5倍 
 LinearInterpolator ll = new LinearInterpolator(); 
 ScaleAnimation scaleAnimation = new ScaleAnimation(1, 0.5f, 1, 1);//默认从(0,0) 
 scaleAnimation.setDuration(500); 
 scaleAnimation.setInterpolator(ll); 
 scaleAnimation.setFillAfter(true); 
 chartView.startAnimation(scaleAnimation); 

点击打开素材下载地址

上一篇:spring+maven实现发送邮件功能

栏    目:JAVA代码

下一篇:Springboot配置文件内容加密代码实例

本文标题:Java实现帧动画的实例代码

本文地址:http://www.codeinn.net/misctech/37439.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有