给LinearLayout的addView()removeView()添加动画
Posted 心脏dance
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给LinearLayout的addView()removeView()添加动画相关的知识,希望对你有一定的参考价值。
其实挺简单的,只需要添加一行 “android:animateLayoutChanges="true" ” 就可以实现系统的默认动画了。
<LinearLayout
android:id="@+id/xx"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:animateLayoutChanges="true"
android:orientation="vertical" />
以上是关于给LinearLayout的addView()removeView()添加动画的主要内容,如果未能解决你的问题,请参考以下文章
Android:LinearLayout addView 动画