We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cards are overlapping and getting stuck over others while scrolling and release in the middle of the screen and sometimes in fast scroll.
The text was updated successfully, but these errors were encountered:
replace brewAndStartAnimator like this:
private void brewAndStartAnimator(int dur, int finalXorY) { if (animator != null && animator.isRunning()) animator.cancel(); animator = ObjectAnimator.ofInt(StackLayoutManager.this, "animateValue", 0, finalXorY); animator.setDuration(dur); animator.start(); animator.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { lastAnimateValue = 0; } @Override public void onAnimationCancel(Animator animation) { lastAnimateValue = 0; } }); }
Sorry, something went wrong.
No branches or pull requests
Cards are overlapping and getting stuck over others while scrolling and release in the middle of the screen and sometimes in fast scroll.
The text was updated successfully, but these errors were encountered: