use of com.nineoldandroids.animation.AnimatorListenerAdapter in project PhotoNoter by yydcdut.
the class EditTextActivity method finishActivityWithAnimation.
@Override
public void finishActivityWithAnimation(final boolean saved, final int categoryId, final int position, final int comparator) {
int actionBarHeight = getActionBarSize();
int screenHeight = Utils.sScreenHeight;
int contentEditHeight = screenHeight - actionBarHeight;
AnimatorSet animation = new AnimatorSet();
animation.setDuration(Const.DURATION_ACTIVITY);
animation.playTogether(ObjectAnimator.ofFloat(mAppBarLayout, "translationY", 0, -actionBarHeight), ObjectAnimator.ofFloat(mTitleTextInputLayout, "translationY", 0, -actionBarHeight * 3), ObjectAnimator.ofFloat(mContentEdit, "translationY", 0, contentEditHeight), ObjectAnimator.ofFloat(mFabMenuLayout, "translationY", 0, contentEditHeight), ObjectAnimator.ofFloat(mHorizontalEditScrollView, "translationY", 0, contentEditHeight));
animation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (!saved) {
setResult(RESULT_NOTHING);
EditTextActivity.this.finish();
overridePendingTransition(R.anim.activity_no_animation, R.anim.activity_no_animation);
} else {
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putInt(Const.PHOTO_POSITION, position);
bundle.putInt(Const.CATEGORY_ID_4_PHOTNOTES, categoryId);
bundle.putInt(Const.COMPARATOR_FACTORY, comparator);
intent.putExtras(bundle);
setResult(RESULT_DATA, intent);
EditTextActivity.this.finish();
overridePendingTransition(R.anim.activity_no_animation, R.anim.activity_no_animation);
}
}
});
animation.start();
}
use of com.nineoldandroids.animation.AnimatorListenerAdapter in project PhotoNoter by yydcdut.
the class DetailActivity method initAnimationView.
@Override
public void initAnimationView() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(ObjectAnimator.ofFloat(mCardView, "translationY", 0, mTranslateHeight));
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
mOverlayView.setVisibility(View.GONE);
mIsIgnoreClick = true;
}
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
mIsIgnoreClick = true;
}
});
animatorSet.setDuration(400);
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.start();
mAnimationHandler.postDelayed(mDownDelayRunnable, 350);
}
}, 500);
}
use of com.nineoldandroids.animation.AnimatorListenerAdapter in project Carbon by ZieIony.
the class CheckableDrawable method setChecked.
public void setChecked(CheckedState state) {
if (checkedState == state)
return;
if (checkedState == CheckedState.UNCHECKED) {
if (state == CheckedState.CHECKED) {
Animator fill = animateFill();
fill.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
animateCheck().start();
}
});
fill.start();
} else {
animateFill().start();
}
}
if (checkedState == CheckedState.CHECKED) {
if (state == CheckedState.UNCHECKED) {
ValueAnimator check = animateCheck();
check.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
animateFill().reverse();
}
});
check.reverse();
} else {
animateCheck().reverse();
}
}
if (checkedState == CheckedState.INDETERMINATE) {
if (state == CheckedState.CHECKED) {
animateCheck().start();
} else {
animateFill().reverse();
}
}
checkedState = state;
invalidateSelf();
}
use of com.nineoldandroids.animation.AnimatorListenerAdapter in project Carbon by ZieIony.
the class CoordinatorLayout method setVisibility.
public void setVisibility(final int visibility) {
if (visibility == View.VISIBLE && (getVisibility() != View.VISIBLE || animator != null)) {
if (animator != null)
animator.cancel();
if (inAnim != AnimUtils.Style.None) {
animator = AnimUtils.animateIn(this, inAnim, new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator a) {
animator = null;
clearAnimation();
}
});
}
super.setVisibility(visibility);
} else if (visibility != View.VISIBLE && (getVisibility() == View.VISIBLE || animator != null)) {
if (animator != null)
animator.cancel();
if (outAnim == AnimUtils.Style.None) {
super.setVisibility(visibility);
return;
}
animator = AnimUtils.animateOut(this, outAnim, new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator a) {
if (((ValueAnimator) a).getAnimatedFraction() == 1)
CoordinatorLayout.super.setVisibility(visibility);
animator = null;
clearAnimation();
}
});
}
}
use of com.nineoldandroids.animation.AnimatorListenerAdapter in project Carbon by ZieIony.
the class DefaultItemAnimator method animateMoveImpl.
private void animateMoveImpl(final RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) {
final View view = holder.itemView;
final int deltaX = toX - fromX;
final int deltaY = toY - fromY;
// TODO: make EndActions end listeners instead, since end actions aren't called when
// vpas are canceled (and can't end them. why?)
// need listener functionality in VPACompat for this. Ick.
final ValueAnimator animation = ValueAnimator.ofFloat(0, 1);
mMoveAnimations.add(holder);
animation.setDuration(getMoveDuration());
final float startX = ViewHelper.getTranslationX(view);
final float startY = ViewHelper.getTranslationY(view);
animation.addUpdateListener(__ -> {
ViewHelper.setTranslationX(view, MathUtils.lerp(startX, 0, (Float) animation.getAnimatedValue()));
ViewHelper.setTranslationY(view, MathUtils.lerp(startY, 0, (Float) animation.getAnimatedValue()));
});
animation.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
dispatchMoveStarting(holder);
}
@Override
public void onAnimationCancel(Animator animation) {
if (deltaX != 0) {
ViewHelper.setTranslationX(view, 0);
}
if (deltaY != 0) {
ViewHelper.setTranslationY(view, 0);
}
}
@Override
public void onAnimationEnd(Animator animation) {
dispatchMoveFinished(holder);
mMoveAnimations.remove(holder);
dispatchFinishedWhenDone();
}
});
animation.start();
}
Aggregations