网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Java如何实现帧动画-创新互联

这篇文章主要介绍了Java如何实现帧动画,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

成都创新互联专业为企业提供龙陵网站建设、龙陵做网站、龙陵网站设计、龙陵网站制作等企业网站建设、网页设计与制作、龙陵企业网站模板建站服务,十余年龙陵做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

具体如下:

1、效果图

Java如何实现帧动画

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

感谢你能够认真阅读完这篇文章,希望小编分享的“Java如何实现帧动画”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!


当前名称:Java如何实现帧动画-创新互联
分享地址:http://bjjierui.cn/article/dshchh.html

其他资讯