将textview动画android从位置1移动到位置2

时间:2016-03-06 11:34:46

标签: animation textview

enter image description here

我想问一下android中的动画。

之间有什么不同
TranslateAnimation(float fromXDelta, float toXDelta, float fromYDelta, float toYDelta)

TranslateAnimation(int fromXType, float fromXValue, int toXType, float toXValue, int fromYType, float fromYValue, int toYType, float toYValue)

如果我有2个textview属于一个布局,我想将text1移动到text2,我编码:

animation = new TranslateAnimation(txt1.getX(),txt2.getX(), 
txt1.getY(),txt2.getY());

但是当运行代码时,文本1移动其他位置text2。 我该怎么办?

感谢您的帮助:))

0 个答案:

没有答案