Android ScaleAnimation and TranslateAnimation, how to avoid ScaleAnimation movement

前端 未结 4 1536
轮回少年
轮回少年 2021-02-09 19:11

I have an AnimationSet with inside a ScaleAnimation and a TranslateAnimation like this:

TranslateAnimation:

TranslateAnimation goTopFromRight =
        n         


        
4条回答
  •  时光取名叫无心
    2021-02-09 19:42

    The correct solution is to change order of animations. Scale must go first:

    bringToTopFromRightAnimationSet.addAnimation(setSizeForTop);
    bringToTopFromRightAnimationSet.addAnimation(goTopFromRight);
    

提交回复
热议问题