作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有 listView,我在其中从底部添加项目。我想为添加的项目设置动画, ListView 的其余部分应该向上滑动。动画效果应该是从下往上。我试过翻译动画,但它只滑动添加的项目。谢谢
最佳答案
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);
}
关于android - 如何在android中从下到上动画 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14301782/
我是一名优秀的程序员,十分优秀!