Listview布局文件加入动画属性:
android:layoutAnimation=”@anim/listviewtranslate2”
<ListView
android:layoutAnimation="@anim/listviewtranslate2"
android:id="@+id/lv_taskcenter"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@color/title_bg_color"
android:cacheColorHint="#00000000"
android:footerDividersEnabled="false"
android:listSelector="#00000000"></ListView>
anim文件夹下新建@anim/listviewtranslate2
<!--位移动画 和差速器-->
<layoutAnimation android:animation="@anim/scale_0_2"
android:delay="0.5"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
xmlns:android="http://schemas.android.com/apk/res/android">
</layoutAnimation>
anim文件夹下新建@anim/scale_0_2位移动画
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="100%"
android:toXDelta="0"
android:duration="1000"/>
附:也可以添加别的类型动画,如果是符合动画可以用set
渐变动画
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXScale="0"
android:toXScale="1"
android:fromYScale="0"
android:toYScale="1"
android:duration="1000"/>
版权声明:本文为ytfunnysite原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。