Android之实现点击布局缩小然后再放大动画

1、需求

现在需要实现点击View先缩小然后再放大效果

2、代码实现

在res的anim目录下面,写anim_small.xml文件

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="false">
    <scale
        android:duration="150"
        android:fromXScale="1"
        android:fromYScale="1"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="0.8"
        android:toYScale="0.8" />
    <scale
        android:duration="150"
        android:fromXScale="1"
        android:fromYScale="1"
        android:pivotX="50%"
        android:pivotY="50%"
        android:startOffset="150"
        android:toXScale="1.2"
        android:toYScale="1.2" />
</set>
var animation = AnimationUtils.loadAnimation(context, R.anim.anim_small);
view.startAnimation(animation)
(0)

相关推荐