NineOldAndroids动画曲线代替像素

时间:2013-09-06 11:37:55

标签: android android-animation nineoldandroids

我有一个动画,但它在不同的屏幕尺寸上看起来不同,如何调整它 函数curveTo取'dp'而不是像素?

如果有人知道如何在角落点放慢速度,我正在模拟落叶动画。

        ImageView fallingLeave = (ImageView) rootView.findViewById(R.id.lemonpiece1_large);
            mButtonProxy = AnimatorProxy.wrap(fallingLeave);

            // Set up the path we're animating along
            AnimatorPath path = new AnimatorPath();
            path.moveTo(0,0);
            path.curveTo(0, 0, 0 , 80, -80, 70);
            path.curveTo(-80, 70, -80, 120, 80, 140);
            path.curveTo(80, 140, 80, 190, -80, 210);

0 个答案:

没有答案