Android ScaleAnimation和TranslateAnimation,如何避免ScaleAnimation运动

Android ScaleAnimation和TranslateAnimation,如何避免ScaleAnimation运动,第1张

概述我有一个ScaleSet,里面有一个ScaleAnimation和一个TranslateAnimation,如下所示: TranslateAnimation: TranslateAnimation goTopFromRight = new TranslateAnimation(0, -(right.getLeft()-top.getLeft()), 我有一个ScaleSet,里面有一个ScaleAnimation和一个TranslateAnimation,如下所示:

TranslateAnimation:

TranslateAnimation gotopFromright =        new TranslateAnimation(0,-(right.getleft()-top.getleft()),-(right.gettop()-top.gettop()));

ScaleAnimation:

ScaleAnimation =  setSizefortop = new ScaleAnimation(1,2,1,2);

和AnimationSet:

bringToleftFromtopAnimationSet  = new AnimationSet(true);bringTotopFromrightAnimationSet.addAnimation(gotopFromright);bringTotopFromrightAnimationSet.addAnimation(setSizefortop);

问题是,当我尝试仅使用ScaleAnimation时,我的项目会转到我想要的位置,但是当我在AnimationSet中使用ScaleAnimation和TranslateAnimation时,我的项目翻译的次数超出了我的需要,就像ScaleAnimation引入了一些补充一样动作abd我不知道如何删除它们.

谢谢您的帮助.

解决方法 正确的解决方案是改变动画的顺序.规模必须先行:
bringTotopFromrightAnimationSet.addAnimation(setSizefortop);bringTotopFromrightAnimationSet.addAnimation(gotopFromright);
总结

以上是内存溢出为你收集整理的Android ScaleAnimation和TranslateAnimation,如何避免ScaleAnimation运动全部内容,希望文章能够帮你解决Android ScaleAnimation和TranslateAnimation,如何避免ScaleAnimation运动所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131070.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存