package com.marshalchen.common.uimodule.niftymodaldialogeffects.effects; import android.view.View; import com.marshalchen.common.uimodule.nineoldandroids.animation.ObjectAnimator; /** * Created by lee on 2014/7/31. */ public class FlipV extends BaseEffects{ @Override protected void setupAnimation(View view) { getAnimatorSet().playTogether( ObjectAnimator.ofFloat(view, "rotationX", -90, 0).setDuration(mDuration) ); } }