本文整理匯總了Java中com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy.wrap方法的典型用法代碼示例。如果您正苦於以下問題:Java AnimatorProxy.wrap方法的具體用法?Java AnimatorProxy.wrap怎麽用?Java AnimatorProxy.wrap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy
的用法示例。
在下文中一共展示了AnimatorProxy.wrap方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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;
}
示例2: 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;
}
示例3: NineViewGroup
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineViewGroup(Context context) {
super(context);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例4: NineHorizontalScrollView
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineHorizontalScrollView(Context context) {
super(context);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例5: NineFrameLayout
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineFrameLayout(Context context, AttributeSet attrs) {
super(context, attrs);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例6: NineLinearLayout
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例7: NineViewGroup
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例8: NineFrameLayout
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineFrameLayout(Context context) {
super(context);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例9: NineLinearLayout
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineLinearLayout(Context context) {
super(context);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}
示例10: NineViewGroup
import com.actionbarsherlock.internal.nineoldandroids.view.animation.AnimatorProxy; //導入方法依賴的package包/類
public NineViewGroup(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mProxy = AnimatorProxy.NEEDS_PROXY ? AnimatorProxy.wrap(this) : null;
}