给ViewGroup的Item添加动画

如RecyclerView/LinearLayout..
布局中添加android:layoutAnimation="@anim/anim_layout"
anim文件夹中:

<layoutAnimation
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:animation="@anim/animation_popup_enter"
    android:animationOrder="normal"
    android:delay="0.2"/>

猜你喜欢

转载自blog.csdn.net/riqthen/article/details/82110591