Example usage for android.animation ValueAnimator.AnimatorUpdateListener interface-usage

List of usage examples for android.animation ValueAnimator.AnimatorUpdateListener interface-usage

Introduction

In this page you can find the example usage for android.animation ValueAnimator.AnimatorUpdateListener interface-usage.

Usage

From source file org.hawkular.client.android.util.ViewTransformer.java

/**
 * View transformer.
 *
 * Applies different animations to {@link android.view.View} instances.
 */
public final class ViewTransformer implements ValueAnimator.AnimatorUpdateListener {

From source file com.alex.view.tab.TabLayout.java

@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class TabLayout extends LinearLayout implements ValueAnimator.AnimatorUpdateListener {

    private static final int SHAPE_NONE = 0;
    private int mIndicatorShape = SHAPE_NONE;
    private int mTabCount;

From source file com.tomeokin.widget.jotablayout2.JoTabLayout.java

public class JoTabLayout extends LinearLayout implements ValueAnimator.AnimatorUpdateListener {
    // Gravity
    private static final int GRAVITY_TOP = 1;
    private static final int GRAVITY_BOTTOM = 3;

    // Indicator Shape

From source file com.hippo.widget.slidingdrawerlayout.SlidingDrawerLayout.java

@SuppressLint("RtlHardcoded")
public class SlidingDrawerLayout extends ViewGroup
        implements ValueAnimator.AnimatorUpdateListener, Animator.AnimatorListener {

    @IntDef({ STATE_CLOSED, STATE_SLIDING, STATE_OPEN })
    @Retention(RetentionPolicy.SOURCE)

From source file com.hippo.drawerlayout.DrawerLayout.java

@SuppressLint("RtlHardcoded")
public class DrawerLayout extends ViewGroup
        implements ValueAnimator.AnimatorUpdateListener, Animator.AnimatorListener {

    @IntDef({ STATE_CLOSED, STATE_SLIDING, STATE_OPEN })
    @Retention(RetentionPolicy.SOURCE)

From source file com.taobao.weex.ui.animation.DimensionUpdateListener.java

public class DimensionUpdateListener implements ValueAnimator.AnimatorUpdateListener {

    private View view;
    private Pair<Integer, Integer> width;
    private Pair<Integer, Integer> height;
    private IntEvaluator intEvaluator;

From source file com.joaquimley.birdsseyeview.activities.MapsActivity.java

/**
 * Launcher activity with Google Map fragment
 */

public class MapsActivity extends FragmentActivity implements GoogleMap.OnMapLoadedCallback,
        Animator.AnimatorListener, ValueAnimator.AnimatorUpdateListener, GoogleMap.OnMapClickListener {