我想问一下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。 我该怎么办?
感谢您的帮助:))