如何在android中从下到上动画视图

时间:2013-01-13 08:15:28

标签: android android-layout

我有listView,我从底部添加项目。 我想动画添加的项目,列表视图的其余部分应该向上滑动。 动画效果应该是从下到上。 我试过翻译动画,但它只滑动添加项目。 感谢

2 个答案:

答案 0 :(得分:7)

public static void slideToBottom(View view){
    TranslateAnimation animate = new TranslateAnimation(0,0,0,view.getHeight());
    animate.setDuration(500);
    animate.setFillAfter(true);
    view.startAnimation(animate);
    view.setVisibility(View.GONE);
}

public static void slideToTop(View view){
    TranslateAnimation animate = new TranslateAnimation(0,0,view.getHeight(),0);
    animate.setDuration(500);
    animate.setFillAfter(true);
    view.startAnimation(animate);
    view.setVisibility(View.VISIBLE);
}

答案 1 :(得分:0)

看到这个LIB可能对你有帮助

  

http://nhaarman.github.io/ListViewAnimations/?ref=app