欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 控件动画

程序员文章站 2022-03-08 11:37:27
...

private void moveLine(ImageView imageView, float fromX, float toX, float fromY, float toY) {
AnimationSet animationSet = new AnimationSet(true);
final TranslateAnimation animation = new TranslateAnimation(fromX, toX, fromY, toY);
animation.setDuration(300);//设置动画持续时间
animation.setFillAfter(false);//动画结束后是否回到原位
animationSet.addAnimation(animation);
imageView.startAnimation(animation);

}
相关标签: android