ScaleAnimation上的ivotX和PivotY无效

| 我正在尝试使用ScaleAnimation从视图的中心左右缩放一个视图。无论我为ivotX和PivotY设置什么值,它总是以相同的方式缩放(例如右边缘似乎在缩放,以保持左边缘不变)。以下是我用来初始化ScaleAnimation的代码。如果我做错了任何人,请让我知道。谢谢。
final ScaleAnimation scaleAnim = new ScaleAnimation(1.0f, 2.0f, 1.0f, 1.0f,
     Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
    
已邀请:
        启动动画解决了这个问题。 我只是使用下面的代码对其进行初始化。
    anim.initialize(/* animate view */child.getWidth(), 
                                     child.getHeight(),
                    /* parents view */ this.getWidth(), 
                                      this.getHeight());
    

要回复问题请先登录注册