示例#1
0
 public View(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   proxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
 public NineViewGroup(Context context, AttributeSet attributeSet, int i) {
   super(context, attributeSet, i);
   this.mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
示例#3
0
 public View(Context context) {
   super(context);
   proxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
 public NineViewGroup(Context context) {
   super(context);
   this.mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }