当前位置: 首页>>代码示例>>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;未经允许,请勿转载。