android.animation.ObjectAnimator.removeAllListeners()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.8k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中android.animation.ObjectAnimator.removeAllListeners()方法的一些代码示例,展示了ObjectAnimator.removeAllListeners()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ObjectAnimator.removeAllListeners()方法的具体详情如下:
包路径:android.animation.ObjectAnimator
类名称:ObjectAnimator
方法名:removeAllListeners

ObjectAnimator.removeAllListeners介绍

暂无

代码示例

代码示例来源:origin: PhilJay/MPAndroidChart

protected void resetAnimator(){
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: jiajunhui/PlayerBase

private void cancelBottomAnimation(){
  if(mBottomAnimator!=null){
    mBottomAnimator.cancel();
    mBottomAnimator.removeAllListeners();
    mBottomAnimator.removeAllUpdateListeners();
  }
}

代码示例来源:origin: jiajunhui/PlayerBase

private void cancelTopAnimation(){
  if(mTopAnimator!=null){
    mTopAnimator.cancel();
    mTopAnimator.removeAllListeners();
    mTopAnimator.removeAllUpdateListeners();
  }
}

代码示例来源:origin: klinker24/Android-Blur-Launcher

private ObjectAnimator cancelAnimator(ObjectAnimator animator) {
    if (animator != null) {
      animator.removeAllListeners();
      animator.cancel();
    }
    return null;
  }
}

代码示例来源:origin: mime-mob/AndroidAdvanceAnimation

public PropertyAnimator removeAllListeners() {
  checkObj();
  animator.removeAllListeners();
  return this;
}

代码示例来源:origin: fookwood/Launcher3

private ObjectAnimator cancelAnimator(ObjectAnimator animator) {
    if (animator != null) {
      animator.removeAllListeners();
      animator.cancel();
    }
    return null;
  }
}

代码示例来源:origin: klinker24/launcher3

private ObjectAnimator cancelAnimator(ObjectAnimator animator) {
    if (animator != null) {
      animator.removeAllListeners();
      animator.cancel();
    }
    return null;
  }
}

代码示例来源:origin: StannyBing/ZXUtils

@Override
public void onAnimationEnd(Animator animation) {
  if (mSwipeCloseListener != null)
    mSwipeCloseListener.onSwipeOptionsClosed();
  translateAnimator.removeAllListeners();
}

代码示例来源:origin: alexgomes09/SIRIWaveView

public void stopAnimation() {
  if (mAmplitudeAnimator != null) {
    mAmplitudeAnimator.removeAllListeners();
    mAmplitudeAnimator.end();
    mAmplitudeAnimator.cancel();
  }
}

代码示例来源:origin: StannyBing/ZXUtils

@Override
public void onAnimationEnd(Animator animation) {
  if (mSwipeCloseListener != null) {
    if (animateType == Animation.OPEN)
      mSwipeCloseListener.onSwipeOptionsOpened();
    else if (animateType == Animation.CLOSE)
      mSwipeCloseListener.onSwipeOptionsClosed();
  }
  translateAnimator.removeAllListeners();
}

代码示例来源:origin: klinker24/Android-Blur-Launcher

public void stopAllAnimations() {
  if (mAnimator != null) {
    mAnimator.removeAllListeners();
    mAnimator.cancel();
    mAnimator = null;
  }
  mFinalPosition = mActivePage;
  CURRENT_POSITION.set(this, mFinalPosition);
}

代码示例来源:origin: klinker24/launcher3

public void stopAllAnimations() {
  if (mAnimator != null) {
    mAnimator.removeAllListeners();
    mAnimator.cancel();
    mAnimator = null;
  }
  mFinalPosition = mActivePage;
  CURRENT_POSITION.set(this, mFinalPosition);
}

代码示例来源:origin: com.github.PhilJay/MPAndroidChart

protected void resetAnimator(){
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: WallaceXiao/StockChart-MPAndroidChart

protected void resetAnimator() {
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: xiaolongonly/Ticket-Analysis

protected void resetAnimator(){
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: StannyBing/ZXUtils

protected void resetAnimator(){
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: WenWangAndroid/ChartManager

protected void resetAnimator(){
  animator.removeAllListeners();
  animator.removeAllUpdateListeners();
  animator.reverse();
  animator.addUpdateListener(this);
  animator.addListener(this);
}

代码示例来源:origin: stackoverflow.com

public void stopRainbowAnimation() {
  System.gc();
  stopCalled = true;
  if (!objectAnimators.isEmpty()) {
    for (int i = 0; i < objectAnimators.size(); i++) {
      ObjectAnimator eachAnimator = objectAnimators.get(i);
      eachAnimator.setRepeatCount(0);
      eachAnimator.end();
      eachAnimator.cancel();
      eachAnimator.removeAllListeners();
      eachAnimator.removeAllUpdateListeners();
    }
    objectAnimators.clear();
  }
}

代码示例来源:origin: kingwang666/BookLoadingView

private void stopLoading() {
  mStopped = true;
  if (mPathAnim != null) {
    if (mPathAnim.isStarted()) {
      mPathAnim.cancel();
    }
    mPathAnim.removeAllListeners();
    mPathAnim.removeAllUpdateListeners();
    mPathAnim = null;
  }
  mTextMaskView.clearAnimation();
  if (mFirst3DAnim != null) {
    mFirst3DAnim.setAnimationListener(null);
    mFirst3DAnim = null;
  }
  if (mSec3DAnim != null) {
    mSec3DAnim = null;
  }
  if (mColorAnim != null) {
    if (mColorAnim.isStarted()) {
      mColorAnim.cancel();
    }
    mColorAnim.removeAllListeners();
    mColorAnim = null;
  }
  mTextJumpAnim.stopJumping();
}

相关文章