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运动所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)