Search in sources :

Example 31 with AnimatorSet

use of com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet in project ActionBarSherlock by JakeWharton.

the class ActionBarImpl method show.

void show(boolean markHiddenBeforeMode) {
    if (mCurrentShowAnim != null) {
        mCurrentShowAnim.end();
    }
    if (mContainerView.getVisibility() == View.VISIBLE) {
        if (markHiddenBeforeMode)
            mWasHiddenBeforeMode = false;
        return;
    }
    mContainerView.setVisibility(View.VISIBLE);
    if (mShowHideAnimationEnabled) {
        mContainerView.setAlpha(0);
        AnimatorSet anim = new AnimatorSet();
        AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 1));
        if (mContentView != null) {
            b.with(ObjectAnimator.ofFloat(mContentView, "translationY", -mContainerView.getHeight(), 0));
            mContainerView.setTranslationY(-mContainerView.getHeight());
            b.with(ObjectAnimator.ofFloat(mContainerView, "translationY", 0));
        }
        if (mSplitView != null && mContextDisplayMode == CONTEXT_DISPLAY_SPLIT) {
            mSplitView.setAlpha(0);
            mSplitView.setVisibility(View.VISIBLE);
            b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 1));
        }
        anim.addListener(mShowListener);
        mCurrentShowAnim = anim;
        anim.start();
    } else {
        mContainerView.setAlpha(1);
        mContainerView.setTranslationY(0);
        mShowListener.onAnimationEnd(null);
    }
}
Also used : AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)

Example 32 with AnimatorSet

use of com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet in project Ushahidi_Android by ushahidi.

the class ActionBarImpl method hide.

@Override
public void hide() {
    if (mCurrentShowAnim != null) {
        mCurrentShowAnim.end();
    }
    if (mContainerView.getVisibility() == View.GONE) {
        return;
    }
    if (mShowHideAnimationEnabled) {
        mContainerView.setAlpha(1);
        mContainerView.setTransitioning(true);
        AnimatorSet anim = new AnimatorSet();
        AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 0));
        if (mContentView != null) {
            b.with(ObjectAnimator.ofFloat(mContentView, "translationY", 0, -mContainerView.getHeight()));
            b.with(ObjectAnimator.ofFloat(mContainerView, "translationY", -mContainerView.getHeight()));
        }
        if (mSplitView != null && mSplitView.getVisibility() == View.VISIBLE) {
            mSplitView.setAlpha(1);
            b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 0));
        }
        anim.addListener(mHideListener);
        mCurrentShowAnim = anim;
        anim.start();
    } else {
        mHideListener.onAnimationEnd(null);
    }
}
Also used : AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)

Example 33 with AnimatorSet

use of com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet in project little-bear-dictionary by daimajia.

the class ActionBarImpl method hide.

@Override
public void hide() {
    if (mCurrentShowAnim != null) {
        mCurrentShowAnim.end();
    }
    if (mContainerView.getVisibility() == View.GONE) {
        return;
    }
    if (mShowHideAnimationEnabled) {
        mContainerView.setAlpha(1);
        mContainerView.setTransitioning(true);
        AnimatorSet anim = new AnimatorSet();
        AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 0));
        if (mContentView != null) {
            b.with(ObjectAnimator.ofFloat(mContentView, "translationY", 0, -mContainerView.getHeight()));
            b.with(ObjectAnimator.ofFloat(mContainerView, "translationY", -mContainerView.getHeight()));
        }
        if (mSplitView != null && mSplitView.getVisibility() == View.VISIBLE) {
            mSplitView.setAlpha(1);
            b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 0));
        }
        anim.addListener(mHideListener);
        mCurrentShowAnim = anim;
        anim.start();
    } else {
        mHideListener.onAnimationEnd(null);
    }
}
Also used : AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)

Example 34 with AnimatorSet

use of com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet in project little-bear-dictionary by daimajia.

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 35 with AnimatorSet

use of com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet in project little-bear-dictionary by daimajia.

the class ActionBarImpl method show.

void show(boolean markHiddenBeforeMode) {
    if (mCurrentShowAnim != null) {
        mCurrentShowAnim.end();
    }
    if (mContainerView.getVisibility() == View.VISIBLE) {
        if (markHiddenBeforeMode)
            mWasHiddenBeforeMode = false;
        return;
    }
    mContainerView.setVisibility(View.VISIBLE);
    if (mShowHideAnimationEnabled) {
        mContainerView.setAlpha(0);
        AnimatorSet anim = new AnimatorSet();
        AnimatorSet.Builder b = anim.play(ObjectAnimator.ofFloat(mContainerView, "alpha", 1));
        if (mContentView != null) {
            b.with(ObjectAnimator.ofFloat(mContentView, "translationY", -mContainerView.getHeight(), 0));
            mContainerView.setTranslationY(-mContainerView.getHeight());
            b.with(ObjectAnimator.ofFloat(mContainerView, "translationY", 0));
        }
        if (mSplitView != null && mContextDisplayMode == CONTEXT_DISPLAY_SPLIT) {
            mSplitView.setAlpha(0);
            mSplitView.setVisibility(View.VISIBLE);
            b.with(ObjectAnimator.ofFloat(mSplitView, "alpha", 1));
        }
        anim.addListener(mShowListener);
        mCurrentShowAnim = anim;
        anim.start();
    } else {
        mContainerView.setAlpha(1);
        mContainerView.setTranslationY(0);
        mShowListener.onAnimationEnd(null);
    }
}
Also used : AnimatorSet(com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet)

Aggregations

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