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


Java AnimatorProxy.NEEDS_PROXY屬性代碼示例

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


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

示例1: getAlpha

public float getAlpha() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getAlpha();
    } else {
        return super.getAlpha();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineViewGroup.java

示例2: getTranslationX

public float getTranslationX() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getTranslationX();
    } else {
        return super.getTranslationX();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineLinearLayout.java

示例3: setTranslationX

public void setTranslationX(float translationX) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setTranslationX(translationX);
    } else {
        super.setTranslationX(translationX);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineViewGroup.java

示例4: setTranslationY

public void setTranslationY(float translationY) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setTranslationY(translationY);
    } else {
        super.setTranslationY(translationY);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineViewGroup.java

示例5: setAlpha

public void setAlpha(float alpha) {
    if (AnimatorProxy.NEEDS_PROXY) {
        mProxy.setAlpha(alpha);
    } else {
        super.setAlpha(alpha);
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineHorizontalScrollView.java

示例6: getTranslationY

public float getTranslationY() {
    if (AnimatorProxy.NEEDS_PROXY) {
        return mProxy.getTranslationY();
    } else {
        return super.getTranslationY();
    }
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:7,代碼來源:NineFrameLayout.java

示例7: NineViewGroup

public NineViewGroup(Context context) {
    super(context);
    mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:4,代碼來源:NineViewGroup.java

示例8: NineHorizontalScrollView

public NineHorizontalScrollView(Context context) {
    super(context);
    mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:4,代碼來源:NineHorizontalScrollView.java

示例9: NineFrameLayout

public NineFrameLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:4,代碼來源:NineFrameLayout.java

示例10: NineLinearLayout

public NineLinearLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
    mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
 
開發者ID:treasure-lau,項目名稱:CSipSimple,代碼行數:4,代碼來源:NineLinearLayout.java

示例11: NineViewGroup

public NineViewGroup(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
 
開發者ID:leerduo,項目名稱:travelinfo,代碼行數:4,代碼來源:NineViewGroup.java


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