當前位置: 首頁>>代碼示例>>Java>>正文


Java AnimatorSet.start方法代碼示例

本文整理匯總了Java中com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet.start方法的典型用法代碼示例。如果您正苦於以下問題:Java AnimatorSet.start方法的具體用法?Java AnimatorSet.start怎麽用?Java AnimatorSet.start使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet的用法示例。


在下文中一共展示了AnimatorSet.start方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: hide

import com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet; //導入方法依賴的package包/類
@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);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:32,代碼來源:ActionBarImpl.java

示例2: show

import com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet; //導入方法依賴的package包/類
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);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:35,代碼來源:ActionBarImpl.java


注:本文中的com.actionbarsherlock.internal.nineoldandroids.animation.AnimatorSet.start方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。