Search in sources :

Example 16 with ObjectAnimator

use of com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator in project cw-omnibus by commonsguy.

the class ScrollingTabContainerView method animateToVisibility.

public void animateToVisibility(int visibility) {
    if (mVisibilityAnim != null) {
        mVisibilityAnim.cancel();
    }
    if (visibility == VISIBLE) {
        if (getVisibility() != VISIBLE) {
            setAlpha(0);
        }
        ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
        anim.setDuration(FADE_DURATION);
        anim.setInterpolator(sAlphaInterpolator);
        anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
        anim.start();
    } else {
        ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
        anim.setDuration(FADE_DURATION);
        anim.setInterpolator(sAlphaInterpolator);
        anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
        anim.start();
    }
}
Also used : ObjectAnimator(com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator)

Example 17 with ObjectAnimator

use of com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator in project cw-omnibus by commonsguy.

the class AbsActionBarView method animateToVisibility.

public void animateToVisibility(int visibility) {
    if (mVisibilityAnim != null) {
        mVisibilityAnim.cancel();
    }
    if (visibility == VISIBLE) {
        if (getVisibility() != VISIBLE) {
            setAlpha(0);
            if (mSplitView != null && mMenuView != null) {
                mMenuView.setAlpha(0);
            }
        }
        ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 1);
        anim.setDuration(FADE_DURATION);
        anim.setInterpolator(sAlphaInterpolator);
        if (mSplitView != null && mMenuView != null) {
            AnimatorSet set = new AnimatorSet();
            ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 1);
            splitAnim.setDuration(FADE_DURATION);
            set.addListener(mVisAnimListener.withFinalVisibility(visibility));
            set.play(anim).with(splitAnim);
            set.start();
        } else {
            anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
            anim.start();
        }
    } else {
        ObjectAnimator anim = ObjectAnimator.ofFloat(this, "alpha", 0);
        anim.setDuration(FADE_DURATION);
        anim.setInterpolator(sAlphaInterpolator);
        if (mSplitView != null && mMenuView != null) {
            AnimatorSet set = new AnimatorSet();
            ObjectAnimator splitAnim = ObjectAnimator.ofFloat(mMenuView, "alpha", 0);
            splitAnim.setDuration(FADE_DURATION);
            set.addListener(mVisAnimListener.withFinalVisibility(visibility));
            set.play(anim).with(splitAnim);
            set.start();
        } else {
            anim.addListener(mVisAnimListener.withFinalVisibility(visibility));
            anim.start();
        }
    }
}
Also used : ObjectAnimator(com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator) AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)

Example 18 with ObjectAnimator

use of com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator in project cw-omnibus by commonsguy.

the class ActionBarContextView method makeInAnimation.

private Animator makeInAnimation() {
    mClose.setTranslationX(-mClose.getWidth() - ((MarginLayoutParams) mClose.getLayoutParams()).leftMargin);
    ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mClose, "translationX", 0);
    buttonAnimator.setDuration(200);
    buttonAnimator.addListener(this);
    buttonAnimator.setInterpolator(new DecelerateInterpolator());
    AnimatorSet set = new AnimatorSet();
    AnimatorSet.Builder b = set.play(buttonAnimator);
    if (mMenuView != null) {
        final int count = mMenuView.getChildCount();
        if (count > 0) {
            for (int i = count - 1, j = 0; i >= 0; i--, j++) {
                AnimatorProxy child = AnimatorProxy.wrap(mMenuView.getChildAt(i));
                child.setScaleY(0);
                ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0, 1);
                a.setDuration(100);
                a.setStartDelay(j * 70);
                b.with(a);
            }
        }
    }
    return set;
}
Also used : DecelerateInterpolator(android.view.animation.DecelerateInterpolator) ObjectAnimator(com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator) AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet) AnimatorProxy(com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy)

Example 19 with ObjectAnimator

use of com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator in project httpclient by pixmob.

the class ActionBarContextView method makeOutAnimation.

private Animator makeOutAnimation() {
    ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mClose, "translationX", -mClose.getWidth() - ((MarginLayoutParams) mClose.getLayoutParams()).leftMargin);
    buttonAnimator.setDuration(200);
    buttonAnimator.addListener(this);
    buttonAnimator.setInterpolator(new DecelerateInterpolator());
    AnimatorSet set = new AnimatorSet();
    AnimatorSet.Builder b = set.play(buttonAnimator);
    if (mMenuView != null) {
        final int count = mMenuView.getChildCount();
        if (count > 0) {
            for (int i = 0; i < 0; i++) {
                AnimatorProxy child = AnimatorProxy.wrap(mMenuView.getChildAt(i));
                child.setScaleY(0);
                ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0);
                a.setDuration(100);
                a.setStartDelay(i * 70);
                b.with(a);
            }
        }
    }
    return set;
}
Also used : DecelerateInterpolator(android.view.animation.DecelerateInterpolator) ObjectAnimator(com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator) AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet) AnimatorProxy(com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy)

Example 20 with ObjectAnimator

use of com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator in project httpclient by pixmob.

the class ActionBarContextView method makeInAnimation.

private Animator makeInAnimation() {
    mClose.setTranslationX(-mClose.getWidth() - ((MarginLayoutParams) mClose.getLayoutParams()).leftMargin);
    ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mClose, "translationX", 0);
    buttonAnimator.setDuration(200);
    buttonAnimator.addListener(this);
    buttonAnimator.setInterpolator(new DecelerateInterpolator());
    AnimatorSet set = new AnimatorSet();
    AnimatorSet.Builder b = set.play(buttonAnimator);
    if (mMenuView != null) {
        final int count = mMenuView.getChildCount();
        if (count > 0) {
            for (int i = count - 1, j = 0; i >= 0; i--, j++) {
                AnimatorProxy child = AnimatorProxy.wrap(mMenuView.getChildAt(i));
                child.setScaleY(0);
                ObjectAnimator a = ObjectAnimator.ofFloat(child, "scaleY", 0, 1);
                a.setDuration(100);
                a.setStartDelay(j * 70);
                b.with(a);
            }
        }
    }
    return set;
}
Also used : DecelerateInterpolator(android.view.animation.DecelerateInterpolator) ObjectAnimator(com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator) AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet) AnimatorProxy(com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy)

Aggregations

ObjectAnimator (com.actionbarsherlock.internal.nineoldandroids.animation.ObjectAnimator)28 AnimatorSet (com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)21 DecelerateInterpolator (android.view.animation.DecelerateInterpolator)14 AnimatorProxy (com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy)14