给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" />
上一篇: java设计模式之中介者模式