Home | History | Annotate | Download | only in cardflip

Lines Matching refs:ROTATION

134         PropertyValuesHolder rotation = PropertyValuesHolder.ofFloat(View.ROTATION_Y,
142 ObjectAnimator cardAnimator = ObjectAnimator.ofPropertyValuesHolder(this, rotation,
250 * Returns a rotation animation which rotates this card by some degree about
258 int rotation = cardFromTop * ROTATION_PER_CARD;
261 rotation = -rotation;
265 rotation = 0;
268 return ObjectAnimator.ofFloat(this, View.ROTATION, rotation);
272 * Returns a full rotation animator which rotates this card by 360 degrees
282 int rotation = 360 - currentRotation;
283 rotation = isClockwise ? rotation : -rotation;
285 ObjectAnimator animator = ObjectAnimator.ofFloat(this, View.ROTATION, rotation);