【发布时间】:2015-08-21 02:49:04
【问题描述】:
我正在尝试在 Android 中制作一个简单的翻译动画。以下不起作用:
public class MyView extends ViewGroup {
...
TranslateAnimation animation = new TranslateAnimation(0, 0, 0, -500);
animation.setDuration(300);
startAnimation(animation);
...
}
但是,这是可行的:
public class MyView extends ViewGroup {
...
animate().setDuration(300).translationYBy(-500);
...
}
我需要顶级版本才能工作,因为我要同时添加更多需要动画的视图,并且我想在 AnimationSet 中使用 TranslateAnimations。
【问题讨论】:
标签: java android android-animation viewgroup