Android编程中Tween动画和Frame动画实例分析
本文实例讲述了Android编程中Tween动画和Frame动画实现方法。分享给大家供大家参考,具体如下:
Animation主要有两种动画模式:Tween动画和Frame动画
Tween动画由四种类型组成
res目录下新建anim创建Tween.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" android:duration="3000" /> <!-- 旋转 --> <rotate android:fromDegrees="0" android:toDegrees="360" android:pivotX="50%" android:pivotY="50%" android:duration="3000" /> <!-- 缩放 --> <scale android:fromXScale="1" android:fromYScale="1" android:toXScale="3" android:toYScale="3" android:pivotX="0" android:pivotY="0" android:duration="3000" /> <!-- 移动 --> <translate android:fromXDelta="0" android:fromYDelta="0" android:toXDelta="50%p" android:toYDelta="50%p" android:duration="3000" /> </set>
以上每个动画效果可放在不同的xml文件中已方便查看效果
下边是Activity中调用动画
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); imageView = (ImageView) findViewById(R.id.img); } public void onClick(View view) { Animation animation = null; switch (view.getId()) { case R.id.alpha: animation = AnimationUtils.loadAnimation(this, R.anim.alpha); break; case R.id.scale: animation = AnimationUtils.loadAnimation(this, R.anim.scale); break; case R.id.translate: animation = AnimationUtils.loadAnimation(this, R.anim.translate); break; case R.id.rotate: //animation = AnimationUtils.loadAnimation(this, R.anim.rotate); //令一种方式JavaCode中 创建RotateAnimation animation = new RotateAnimation(0, 180, RotateAnimation.RELATIVE_TO_SELF, 0.5f, RotateAnimation.RELATIVE_TO_SELF, 0.5f); animation.setDuration(3000); break; case R.id.all: animation = AnimationUtils.loadAnimation(this, R.anim.Tween); break; } //启动动画 imageView.startAnimation(animation); }
Tween动画由四种类型组成
帧动画是有多张图片组成,多张图片循环。
示例:
Frame.xml
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> <item android:drawable="@drawable/p1" android:duration="200" /> <item android:drawable="@drawable/p2" android:duration="200" /> <item android:drawable="@drawable/p3" android:duration="200" /> <item android:drawable="@drawable/p4" android:duration="200" /> <item android:drawable="@drawable/p5" android:duration="200" /> <item android:drawable="@drawable/p6" android:duration="200" /> <item android:drawable="@drawable/p7" android:duration="800" /> <item android:drawable="@drawable/p8" android:duration="200" /> <item android:drawable="@drawable/p9" android:duration="200" /> <item android:drawable="@drawable/p10" android:duration="200" /> <item android:drawable="@drawable/p11" android:duration="200" /> </animation-list>
main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@anim/frame" android:onClick="go" /> </LinearLayout>
Activity:
public void go(View view) { // 获取ImageView ImageView imageView = (ImageView) view; // 获取ImageView上面的动画图片 AnimationDrawable drawable = (AnimationDrawable) imageView.getDrawable(); // 动画开始 drawable.start(); }
希望本文所述对大家Android程序设计有所帮助。
- Android动画之补间动画(Tween Animation)实例详解
- Android帧动画、补间动画、属性动画用法详解
- Android动画之补间动画(Tween Animation)基础学习
- android 帧动画,补间动画,属性动画的简单总结
- Android基础知识之tween动画效果
- Android Tween动画之RotateAnimation实现图片不停旋转效果实例介绍
- Android动画之渐变动画(Tween Animation)详解 (渐变、缩放、位移、旋转)
- Android 动画之TranslateAnimation应用详解
- Android 动画之ScaleAnimation应用详解
- Android控件Tween动画(补间动画)实现方法示例
相关文章
android仿知乎ScrollView滚动改变标题栏透明度
这篇文章主要为大家详细介绍了android仿知乎ScrollView滚动改变标题栏透明度,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2018-06-06详解Android 利用Iptables实现网络黑白名单(防火墙)
这篇文章主要介绍了详解Android 利用Iptables实现网络黑白名单(防火墙),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-08-08加载页面遮挡耗时操作任务页面--第三方开源之AndroidProgressLayout
AndroidProgressLayout实现为界面添加圆形进度条。调用setprogress()方法显示和隐藏进度条,这篇文章主要介绍了加载页面遮挡耗时操作任务页面--第三方开源之AndroidProgressLayout的相关资料,需要的朋友可以参考下2015-11-11详解Android Flutter中SliverAppBar的使用教程
对于一个APP来说,肯定会有一个AppBar,这个AppBar一般包含了APP的导航信息等。在lutter已经为我们提供了一个非常强大的AppBar组件,这个组件叫做SliverAppBar。本文就来聊聊它的具体使用吧2023-01-01
最新评论