android.view.animation.AnticipateInterpolator

Here are the examples of the java api class android.view.animation.AnticipateInterpolator taken from open source projects.

1. ExpandableButtonMenu#calculateAnimationProportions()

Project: ExpandableButtonMenu
File: ExpandableButtonMenu.java
/**
     * Initialized animation properties
     */
private void calculateAnimationProportions() {
    TRANSLATION_Y = sHeight * buttonDistanceY;
    TRANSLATION_X = sWidth * buttonDistanceX;
    anticipation = new AnticipateInterpolator(INTERPOLATOR_WEIGHT);
    overshoot = new OvershootInterpolator(INTERPOLATOR_WEIGHT);
}