美文网首页
抖动动画

抖动动画

作者: 一叶书生 | 来源:发表于2021-06-09 13:10 被阅读0次

anim文件夹下创建俩文件如下:

1.anim_shake.xml

<?xml version="1.0" encoding="utf-8"?>

<translate xmlns:android="http://schemas.android.com/apk/res/android"

    android:fromXDelta="0"

    android:toXDelta="50"

    android:duration="500"

    android:interpolator="@anim/cycle_7"

    />

2.cycle.xml

<?xml version="1.0" encoding="utf-8"?>

<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"

    android:cycles="2"

    />

怎么用?

Animation shake = AnimationUtils.loadAnimation(this, R.anim.anim_shake);//加载动画资源文件

findViewById(R.id.tv_shake).startAnimation(shake);//给组件播放动画效

自己看效果去吧(只是左右抖动)

相关文章

网友评论

      本文标题:抖动动画

      本文链接:https://www.haomeiwen.com/subject/slreeltx.html