且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

制作弹跳动画

更新时间:2021-12-27 14:45:17

您可以使用 BounceInterpolator 具有此效果. 文档包含了很好的使用说明在XML中.拥有这样的动画xml:

You can use the BounceInterpolator to have this effect. The docs contain a very good description how to use it in XML. Just have a animation xml like this:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"

    android:interpolator="@android:anim/bounce_interpolator">

    <!-- Use your working translate animation here-->
    <translate
        android:duration="900"
        android:fromXDelta="100%p"
        android:toXDelta="0%p" />
</set>