コード例 #1
0
ファイル: View.java プロジェクト: embarkmobile/HoloEverywhere
 public View(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   proxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
コード例 #2
0
 public NineViewGroup(Context context, AttributeSet attributeSet, int i) {
   super(context, attributeSet, i);
   this.mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
コード例 #3
0
ファイル: View.java プロジェクト: embarkmobile/HoloEverywhere
 public View(Context context) {
   super(context);
   proxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }
コード例 #4
0
 public NineViewGroup(Context context) {
   super(context);
   this.mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
 }