com.actionbarsherlock.internal.nineoldandroids.animation.Animator Java Examples

The following examples show how to use com.actionbarsherlock.internal.nineoldandroids.animation.Animator. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ActionBarContextView.java    From Libraries-for-Android-Developers with MIT License 6 votes vote down vote up
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;
}
 
Example #2
Source File: ActionBarContextView.java    From android-apps with MIT License 6 votes vote down vote up
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;
}
 
Example #3
Source File: ActionBarContextView.java    From zhangshangwuda with Apache License 2.0 6 votes vote down vote up
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;
}
 
Example #4
Source File: ActionBarContextView.java    From CSipSimple with GNU General Public License v3.0 6 votes vote down vote up
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;
}
 
Example #5
Source File: ActionBarContextView.java    From zen4android with MIT License 6 votes vote down vote up
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;
}
 
Example #6
Source File: ActionBarContextView.java    From CSipSimple with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mAnimationMode == ANIMATE_OUT) {
        killMode();
    }
    mAnimationMode = ANIMATE_IDLE;
}
 
Example #7
Source File: ActionBarContextView.java    From Libraries-for-Android-Developers with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mAnimationMode == ANIMATE_OUT) {
        killMode();
    }
    mAnimationMode = ANIMATE_IDLE;
}
 
Example #8
Source File: ActionBarContextView.java    From CSipSimple with GNU General Public License v3.0 5 votes vote down vote up
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;
}
 
Example #9
Source File: AbsActionBarView.java    From Libraries-for-Android-Developers with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
    if (mSplitView != null && mMenuView != null) {
        mMenuView.setVisibility(mFinalVisibility);
    }
}
 
Example #10
Source File: ActionBarContextView.java    From CSipSimple with GNU General Public License v3.0 5 votes vote down vote up
private void finishAnimation() {
    final Animator a = mCurrentAnimation;
    if (a != null) {
        mCurrentAnimation = null;
        a.end();
    }
}
 
Example #11
Source File: AbsActionBarView.java    From CSipSimple with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
    if (mSplitView != null && mMenuView != null) {
        mMenuView.setVisibility(mFinalVisibility);
    }
}
 
Example #12
Source File: ActionBarContextView.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mAnimationMode == ANIMATE_OUT) {
        killMode();
    }
    mAnimationMode = ANIMATE_IDLE;
}
 
Example #13
Source File: ScrollingTabContainerView.java    From Libraries-for-Android-Developers with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
}
 
Example #14
Source File: AbsActionBarView.java    From android-apps with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
    if (mSplitView != null && mMenuView != null) {
        mMenuView.setVisibility(mFinalVisibility);
    }
}
 
Example #15
Source File: ActionBarContextView.java    From Libraries-for-Android-Developers with MIT License 5 votes vote down vote up
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;
}
 
Example #16
Source File: ActionBarContextView.java    From android-apps with MIT License 5 votes vote down vote up
private void finishAnimation() {
    final Animator a = mCurrentAnimation;
    if (a != null) {
        mCurrentAnimation = null;
        a.end();
    }
}
 
Example #17
Source File: ActionBarContextView.java    From Libraries-for-Android-Developers with MIT License 5 votes vote down vote up
private void finishAnimation() {
    final Animator a = mCurrentAnimation;
    if (a != null) {
        mCurrentAnimation = null;
        a.end();
    }
}
 
Example #18
Source File: ActionBarContextView.java    From android-apps with MIT License 5 votes vote down vote up
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;
}
 
Example #19
Source File: ActionBarContextView.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
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;
}
 
Example #20
Source File: ActionBarContextView.java    From android-apps with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mAnimationMode == ANIMATE_OUT) {
        killMode();
    }
    mAnimationMode = ANIMATE_IDLE;
}
 
Example #21
Source File: ActionBarContextView.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
private void finishAnimation() {
    final Animator a = mCurrentAnimation;
    if (a != null) {
        mCurrentAnimation = null;
        a.end();
    }
}
 
Example #22
Source File: ActionBarImpl.java    From zen4android with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mContentView != null) {
        mContentView.setTranslationY(0);
        mContainerView.setTranslationY(0);
    }
    if (mSplitView != null && mContextDisplayMode == CONTEXT_DISPLAY_SPLIT) {
        mSplitView.setVisibility(View.GONE);
    }
    mContainerView.setVisibility(View.GONE);
    mContainerView.setTransitioning(false);
    mCurrentShowAnim = null;
    completeDeferredDestroyActionMode();
}
 
Example #23
Source File: AbsActionBarView.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
    if (mSplitView != null && mMenuView != null) {
        mMenuView.setVisibility(mFinalVisibility);
    }
}
 
Example #24
Source File: ActionBarImpl.java    From CSipSimple with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mContentView != null) {
        mContentView.setTranslationY(0);
        mContainerView.setTranslationY(0);
    }
    if (mSplitView != null && mContextDisplayMode == CONTEXT_DISPLAY_SPLIT) {
        mSplitView.setVisibility(View.GONE);
    }
    mContainerView.setVisibility(View.GONE);
    mContainerView.setTransitioning(false);
    mCurrentShowAnim = null;
    completeDeferredDestroyActionMode();
}
 
Example #25
Source File: AbsActionBarView.java    From zen4android with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
    if (mSplitView != null && mMenuView != null) {
        mMenuView.setVisibility(mFinalVisibility);
    }
}
 
Example #26
Source File: ScrollingTabContainerView.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mCanceled) return;

    mVisibilityAnim = null;
    setVisibility(mFinalVisibility);
}
 
Example #27
Source File: ActionBarContextView.java    From zen4android with MIT License 5 votes vote down vote up
private void finishAnimation() {
    final Animator a = mCurrentAnimation;
    if (a != null) {
        mCurrentAnimation = null;
        a.end();
    }
}
 
Example #28
Source File: ActionBarContextView.java    From zen4android with MIT License 5 votes vote down vote up
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;
}
 
Example #29
Source File: ActionBarContextView.java    From zen4android with MIT License 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mAnimationMode == ANIMATE_OUT) {
        killMode();
    }
    mAnimationMode = ANIMATE_IDLE;
}
 
Example #30
Source File: ActionBarImpl.java    From zhangshangwuda with Apache License 2.0 5 votes vote down vote up
@Override
public void onAnimationEnd(Animator animation) {
    if (mContentView != null) {
        mContentView.setTranslationY(0);
        mContainerView.setTranslationY(0);
    }
    if (mSplitView != null && mContextDisplayMode == CONTEXT_DISPLAY_SPLIT) {
        mSplitView.setVisibility(View.GONE);
    }
    mContainerView.setVisibility(View.GONE);
    mContainerView.setTransitioning(false);
    mCurrentShowAnim = null;
    completeDeferredDestroyActionMode();
}