Example usage for android.support.v4.view.animation LinearOutSlowInInterpolator LinearOutSlowInInterpolator

List of usage examples for android.support.v4.view.animation LinearOutSlowInInterpolator LinearOutSlowInInterpolator

Introduction

In this page you can find the example usage for android.support.v4.view.animation LinearOutSlowInInterpolator LinearOutSlowInInterpolator.

Prototype

public LinearOutSlowInInterpolator() 

Source Link

Usage

From source file:devlight.io.library.ntb.NavigationTabBar.java

protected void scrollDown() {
    ViewCompat.animate(this).translationY(getBarHeight()).setInterpolator(new LinearOutSlowInInterpolator())
            .setDuration(DEFAULT_ANIMATION_DURATION).start();
}