如何在android中将ImageView表单中心设置为顶部动画?

如何在android中将ImageView表单中心设置为顶部动画?,android,android-animation,Android,Android Animation,我只想制作一个像TranslateImation这样的ImageView动画,它应该将表单中心(因为ImageView位于Layout.xml中LinearLayout的中心)移动到屏幕顶部。我用这个 TranslateAnimation moveLefttoRight = new TranslateAnimation(0, 0, 0, -200); 我工作,但我想扩大,而图像移动到顶部。。。如何组合这两种动画?本教程似乎指向了正确的方向:

我只想制作一个像TranslateImation这样的ImageView动画,它应该将表单中心(因为ImageView位于Layout.xml中LinearLayout的中心)移动到屏幕顶部。我用这个

TranslateAnimation moveLefttoRight = new TranslateAnimation(0, 0, 0, -200);

我工作,但我想扩大,而图像移动到顶部。。。如何组合这两种动画?

本教程似乎指向了正确的方向: