Android ScaleAnimation and TranslateAnimation, how to avoid ScaleAnimation movement

前端 未结 4 1525
轮回少年
轮回少年 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:38

    My solution is to add a container outside your view, and apply the scale animation to your view while applying translate animation to the container.
    Then you can make more complex animation even via XML~

提交回复
热议问题