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