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


Java Animator.cancel方法代碼示例

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


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

示例1: addIndicator

import android.animation.Animator; //導入方法依賴的package包/類
private void addIndicator(int orientation, @DrawableRes int backgroundDrawableId,
        Animator animator) {
    if (animator.isRunning()) {
        animator.end();
        animator.cancel();
    }

    View Indicator = new View(getContext());
    Indicator.setBackgroundResource(backgroundDrawableId);
    addView(Indicator, mIndicatorWidth, mIndicatorHeight);
    LayoutParams lp = (LayoutParams) Indicator.getLayoutParams();

    if (orientation == HORIZONTAL) {
        lp.leftMargin = mIndicatorMargin;
        lp.rightMargin = mIndicatorMargin;
    } else {
        lp.topMargin = mIndicatorMargin;
        lp.bottomMargin = mIndicatorMargin;
    }

    Indicator.setLayoutParams(lp);

    animator.setTarget(Indicator);
    animator.start();
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:26,代碼來源:CircleIndicator.java

示例2: snapChildIfNeeded

import android.animation.Animator; //導入方法依賴的package包/類
/**
 * Called when a view is updated to be non-dismissable, if the view was being dismissed before
 * the update this will handle snapping it back into place.
 *
 * @param view the view to snap if necessary.
 * @param animate whether to animate the snap or not.
 * @param targetLeft the target to snap to.
 */
public void snapChildIfNeeded(final View view, boolean animate, float targetLeft) {
    if ((mDragging && mCurrView == view) || mSnappingChild) {
        return;
    }
    boolean needToSnap = false;
    Animator dismissPendingAnim = mDismissPendingMap.get(view);
    if (dismissPendingAnim != null) {
        needToSnap = true;
        dismissPendingAnim.cancel();
    } else if (getTranslation(view) != 0) {
        needToSnap = true;
    }
    if (needToSnap) {
        if (animate) {
            snapChild(view, targetLeft, 0.0f /* velocity */);
        } else {
            snapChildInstantly(view);
        }
    }
}
 
開發者ID:enricocid,項目名稱:LaunchEnr,代碼行數:29,代碼來源:SwipeHelper.java

示例3: stop

import android.animation.Animator; //導入方法依賴的package包/類
/**
 * Call this to explicitly stop progress animation specified by {@code mType}.
 */
public void stop() {
    Animator animator;
    if (mAlphaValueAnimatorList != null) {
        for (int i = 0; i < mAlphaValueAnimatorList.size(); ++i) {
            animator = mAlphaValueAnimatorList.get(i);
            if (animator != null) {
                animator.cancel();
            }
        }
        mAlphaValueAnimatorList.clear();
    }
    if (mBetaValueAnimatorList != null) {
        for (int i = 0; i < mBetaValueAnimatorList.size(); ++i) {
            animator = mBetaValueAnimatorList.get(i);
            if (animator != null) {
                animator.cancel();
            }
        }
        mBetaValueAnimatorList.clear();
    }
}
 
開發者ID:vulko,項目名稱:AnimatedArcProgressView,代碼行數:25,代碼來源:ProgressAnimation.java

示例4: setAnimationStatus

import android.animation.Animator; //導入方法依賴的package包/類
/**
 * make animation to start or end when target
 * view was be Visible or Gone or Invisible.
 * make animation to cancel when target view
 * be onDetachedFromWindow.
 * @param animStatus
 */
public void setAnimationStatus(AnimStatus animStatus){
    if (mAnimators==null){
        return;
    }
    int count=mAnimators.size();
    for (int i = 0; i < count; i++) {
        Animator animator=mAnimators.get(i);
        boolean isRunning=animator.isRunning();
        switch (animStatus){
            case START:
                if (!isRunning){
                    animator.start();
                }
                break;
            case END:
                if (isRunning){
                    animator.end();
                }
                break;
            case CANCEL:
                if (isRunning){
                    animator.cancel();
                }
                break;
        }
    }
}
 
開發者ID:Mrqinlei,項目名稱:ImitateZHRB,代碼行數:35,代碼來源:BaseIndicatorController.java

示例5: onDestroyActivity

import android.animation.Animator; //導入方法依賴的package包/類
public static void onDestroyActivity() {
    HashSet<Animator> animators = new HashSet<Animator>(sAnimators.keySet());
    for (Animator a : animators) {
        if (a.isRunning()) {
            a.cancel();
        }
        sAnimators.remove(a);
    }
}
 
開發者ID:michelelacorte,項目名稱:FlickLauncher,代碼行數:10,代碼來源:LauncherAnimUtils.java

示例6: dismiss

import android.animation.Animator; //導入方法依賴的package包/類
private void dismiss() {
    for (Animator animator : mTotalAnimList) {
        animator.cancel();
    }

    if (!mAlphaAnim.isRunning()) {
        mAlphaAnim.start();
    }
}
 
開發者ID:Luodian,項目名稱:Shared-Route,代碼行數:10,代碼來源:FlipShareView.java

示例7: onDestroyActivity

import android.animation.Animator; //導入方法依賴的package包/類
static void onDestroyActivity() {
    HashSet<Animator> animators = new HashSet<Animator>(sAnimators.keySet());
    for (Animator a : animators) {
        if (a.isRunning()) {
            a.cancel();
        }
        sAnimators.remove(a);
    }
}
 
開發者ID:enricocid,項目名稱:LaunchEnr,代碼行數:10,代碼來源:LauncherAnimUtils.java

示例8: cancelAnim

import android.animation.Animator; //導入方法依賴的package包/類
void cancelAnim(Animator animator) {
    if (animator == null) {
        //LogUtil.d("cancel anim : name you have given have animator is null or not exists");
        return;
    }

    boolean cancel = isAnimatorCurrentlyRunning(animator) || isAnimatorCurrentlyPaused(animator);
    //LogUtil.d("canceling animator : " + name + " canCancel : " + cancel);
    if (cancel) {
        animator.cancel();
    }
}
 
開發者ID:anmingyu11,項目名稱:OverScrollableRecyclerView-Method1,代碼行數:13,代碼來源:AnimatorController.java

示例9: stopWobble

import android.animation.Animator; //導入方法依賴的package包/類
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private void stopWobble(boolean resetRotation) {
    for (Animator wobbleAnimator : mWobbleAnimators) {
        wobbleAnimator.cancel();
    }
    mWobbleAnimators.clear();
    for (int i = 0; i < getChildCount(); i++) {
        View v = getChildAt(i);
        if (v != null) {
            if (resetRotation) v.setRotation(0);
            v.setTag(R.id.wobble_tag, false);
        }
    }
}
 
開發者ID:jpaijh,項目名稱:TYT,代碼行數:15,代碼來源:DynamicGridView.java

示例10: cancel

import android.animation.Animator; //導入方法依賴的package包/類
/**
 * cancel
 *
 * @param animator
 * @return
 */
public static boolean cancel(Animator animator) {
    if (animator != null) {
        animator.cancel();
        return true;
    }
    return false;
}
 
開發者ID:alibaba,項目名稱:LuaViewPlayground,代碼行數:14,代碼來源:AnimatorUtil.java

示例11: cancel

import android.animation.Animator; //導入方法依賴的package包/類
@Override
public void cancel() {
    Animator a = mAnimator.get();
    if(a != null){
        a.cancel();
    }
}
 
開發者ID:aliumujib,項目名稱:Nibo,代碼行數:8,代碼來源:SupportAnimatorPreL.java

示例12: setAnimationStatus

import android.animation.Animator; //導入方法依賴的package包/類
/**
 * make animation to start or end when target
 * view was be Visible or Gone or Invisible.
 * make animation to cancel when target view
 * be onDetachedFromWindow.
 *
 * @param animStatus
 */
public void setAnimationStatus(AnimStatus animStatus) {
    if (mAnimators == null) {
        return;
    }
    int count = mAnimators.size();
    for (int i = 0; i < count; i++) {
        Animator animator = mAnimators.get(i);
        boolean isRunning = animator.isRunning();
        switch (animStatus) {
            case START:
                if (!isRunning) {
                    animator.start();
                }
                break;
            case END:
                if (isRunning) {
                    animator.end();
                }
                break;
            case CANCEL:
                if (isRunning) {
                    animator.cancel();
                }
                break;
        }
    }
}
 
開發者ID:Sugarya,項目名稱:Closet,代碼行數:36,代碼來源:BaseIndicatorController.java

示例13: cancel

import android.animation.Animator; //導入方法依賴的package包/類
@Override
public void cancel() {
    Animator a = mAnimator.get();
    if (a != null) {
        a.cancel();
    }
}
 
開發者ID:SimonCherryGZ,項目名稱:JewelryUI,代碼行數:8,代碼來源:SupportAnimatorLollipop.java

示例14: cancelAnimations

import android.animation.Animator; //導入方法依賴的package包/類
private void cancelAnimations() {
    mTmpArray.addAll(mRunningAnimations);
    int size = mTmpArray.size();
    for (int i = 0; i < size; i++) {
        Animator a = mTmpArray.get(i);
        a.cancel();
    }
    mTmpArray.clear();
    mRunningAnimations.clear();
}
 
開發者ID:WrBug,項目名稱:GravityBox,代碼行數:11,代碼來源:KeyButtonRipple.java

示例15: setAnimationStatus

import android.animation.Animator; //導入方法依賴的package包/類
public void setAnimationStatus(BallSpinFadeLoadingView.AnimStatus status) {
    if (mAnimators == null) {
        return;
    }
    int count = mAnimators.size();
    for (int i = 0; i < count; i++) {
        Animator animator = mAnimators.get(i);
        boolean isRunning = animator.isRunning();
        switch (status) {
            case START:
                if (!isRunning) {
                    animator.start();
                }
                break;
            case END:
                if (isRunning) {
                    animator.end();
                }
                break;
            case CANCEL:
                if (isRunning) {
                    animator.cancel();
                }
                break;
        }
    }
}
 
開發者ID:wuhighway,項目名稱:DailyStudy,代碼行數:28,代碼來源:BallPulseLoadingView.java


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