Android开发简单实现摇动动画的方法
来源:爱站网时间:2019-12-16编辑:网友分享
在开发过程中,为了使我们的应用更加生动,我们经常需要添加动画效果,下面爱站技术频道小编特意帮大家搜集了Android开发简单实现摇动动画的方法,喜欢的朋友可以了解一下。
在开发过程中,为了使我们的应用更加生动,我们经常需要添加动画效果,下面爱站技术频道小编特意帮大家搜集了Android开发简单实现摇动动画的方法,喜欢的朋友可以了解一下。
1、先创建shake.xml
<?xml version="1.0" encoding="utf-8"?> <translate xmlns:android="http://schemas.android.com/apk/res/android" android:duration="700" android:fromXDelta="0.0" android:interpolator="@anim/cycle" android:toXDelta="15.0" />
2、创建cycle.xml
<?xml version="1.0" encoding="utf-8"?> <cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="4.0" />
3、使用方式
Animation animation = AnimationUtils.loadAnimation(this, R.anim.shake); animation.setDuration(1000); animation.setRepeatMode(Animation.INFINITE); iv.startAnimation(animation); 以上的内容是爱站技术频道小编为大家介绍的Android开发简单实现摇动动画的方法,如果你想了解更多的知识,可以继续关注js.aizhan.com。