http://blog.csdn.net/lixiaodaoaaa/article/details/8284246
先看实现的效果如下:
演示效果如上:
上面的列表是GridView 要给这个GridView添加一个动画,才可以逐个加载。网上找了大量资料,不少人说用多线程加载,通过SetAdapter设置数据改变,还有用到Handler这样太扯淡了,几乎放弃了。发现直接在配置里设置动画即可。效果非常好,看效果。
上面的列表是GridView 要给这个GridView添加一个动画,才可以逐个加载。网上找了大量资料,不少人说用多线程加载,通过SetAdapter设置数据改变,还有用到Handler这样太扯淡了,几乎放弃了。发现直接在配置里设置动画即可。效果非常好,看效果。
ListView配置方法如下:
- <GridView
- android:background="@drawable/navagation_shape"
- android:id="@+id/gv_navagation"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="1dip"
- android:listSelector="#CDCD00"
- android:drawSelectorOnTop="false"
- android:fadingEdgeLength="0.0dp"
- android:layoutAnimation="@anim/navagation_gridview_anim"
- android:cacheColorHint="@android:color/transparent"
- >
- </GridView>
关键是这句: android:layoutAnimation="@anim/navagation_gridview_anim"
我们在anim目录下新建一个动画xml文件 配置内容如下:navagation_gridview_anim.xml目录文件如下:
- <layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
- android:animation="@anim/list_anim"
- android:animationOrder="normal"
- android:delay="0.5" />
接下来实现 list_anim.xml这个文件也是在 anim文件夹下新建这样的文件配置内容如下:
- <?xml version="1.0" encoding= "utf-8"?>
- <set xmlns:android="http://schemas.android.com/apk/res/android" >
- <translate android:fromXDelta="-100%"
- android:fromYDelta="0"
- android:toXDelta="0"
- android:toYDelta="0"
- android:duration="2550"
- android:interpolator="@android:anim/anticipate_overshoot_interpolator" />
- </set>
- --------------------------------------------------------------------------------
- 稍微解释一下:
- android:interpolator="@android:anim/anticipate_overshoot_interpolator"
- 这里是配置出来的动画效果,是加速跑到终点(过了一点)然后再回到原点)效果不错。
- 其他的含义结合者给的属性大致上都能看懂就不多说了
- android:fromXDelta="-100%" //起始横坐标的位置;;
- android:fromYDelta="0" //起始中坐标的位置
- android:toXDelta="0" //要到达什么地方(X坐标)
- android:toYDelta="0" //要到达什么地方(y坐标)