2

我正在尝试将动画转换为 imageView。动画有效,但不是根据我在 setDuration() 中输入的值

这是代码

/* flipping the images out of the screen */

float outOfScreenX = currentImageLocationX * DRAG_ACTION_SCREEN_BOUNDS_THREASHOLD;

float outOfScreenY = currentImageLocationY * DRAG_ACTION_SCREEN_BOUNDS_THREASHOLD;

            translate = new TranslateAnimation(0, outOfScreenX, 0, outOfScreenY);

            long velocity = Math.max(Math.abs((int) vTracker.getXVelocity()), Math.abs((int) vTracker.getYVelocity())) / 10;

            velocity = (long) Math.min(velocity, 200);

            translate.setDuration(velocity);
            translate.setFillAfter(true);
            mDragView.clearAnimation();
            mDragView.startAnimation(translate);

            imageStack.removeView(mOriginator);

“velocity”的值来源于vTracker,用户触摸视图的速度。它总是大约在 200-600 之间,但视图的移动速度比这快得多(而且有点闪烁,但这是另一个话题)。

4

0 回答 0