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。

上一篇:详解Android Service 使用时的注意事项

下一篇:详解AsyncTask类实例介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载