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


Java AnimatorProxy類代碼示例

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


AnimatorProxy類屬於com.actionbarsherlock.internal.nineoldandroids.view.animation包,在下文中一共展示了AnimatorProxy類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: makeOutAnimation

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

示例2: getAlpha

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public float getAlpha() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getAlpha();
    } else {
        return super.getAlpha();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例3: setAlpha

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public void setAlpha(float alpha) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setAlpha(alpha);
    } else {
        super.setAlpha(alpha);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例4: getTranslationX

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public float getTranslationX() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getTranslationX();
    } else {
        return super.getTranslationX();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例5: setTranslationX

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public void setTranslationX(float translationX) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setTranslationX(translationX);
    } else {
        super.setTranslationX(translationX);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例6: getTranslationY

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public float getTranslationY() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getTranslationY();
    } else {
        return super.getTranslationY();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例7: setTranslationY

import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入依賴的package包/類
public void setTranslationY(float translationY) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setTranslationY(translationY);
    } else {
        super.setTranslationY(translationY);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:8,代碼來源:NineViewGroup.java

示例8: makeInAnimation

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


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