标签: android android-animation
我只想动画像TranslateAnimation这样的ImageView,它应该将窗体中心(因为ImageView位于Layout.xml中的LinearLayout的中心)移动到屏幕顶部。我用这个......
TranslateAnimation moveLefttoRight = new TranslateAnimation(0, 0, 0, -200);
我的工作,但是我希望在图像移动到顶部时展开...我如何组合两种动画?
答案 0 :(得分:1)
本教程似乎指向了正确的方向:http://www.barebonescoder.com/2010/06/android-development-more-animations-part-2/