欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

给LinearLayout的addView()、removeView()添加动画

程序员文章站 2022-05-05 10:11:43
...

其实挺简单的,只需要添加一行 “android:animateLayoutChanges="true" ” 就可以实现系统的默认动画了。

<LinearLayout
    android:id="@+id/xx"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:animateLayoutChanges="true"
    android:orientation="vertical" />