黑马程序员技术交流社区
标题:
ListView飞入效果
[打印本页]
作者:
3389
时间:
2014-3-7 13:34
标题:
ListView飞入效果
[color=#000][code]/**
* 实现listview 飞入效果
*
* @return
*/
private LayoutAnimationController getListAnim() {
AnimationSet set = new AnimationSet(true);
Animation animation = new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(300);
set.addAnimation(animation);
animation = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
-1.0f, Animation.RELATIVE_TO_SELF, 0.0f);
animation.setDuration(500);
set.addAnimation(animation);
LayoutAnimationController controller = new LayoutAnimationController(
set, 0.5f);
return controller;
}
复制代码
调用
listview.setLayoutAnimation(getListAnim());
复制代码
[/code]
作者:
龙行天
时间:
2014-3-8 15:31
高手就是舒服哈!我都不会哈!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2