Skip to content

Instantly share code, notes, and snippets.

@sagar-viradiya
Last active October 2, 2018 08:26
Show Gist options
  • Save sagar-viradiya/c340da63d138e72c651f4066876190cc to your computer and use it in GitHub Desktop.
Save sagar-viradiya/c340da63d138e72c651f4066876190cc to your computer and use it in GitHub Desktop.
Creating SpringAnimation with SpringForce
val springForce = SpringForce(0f)
.setStiffness(SpringForce.STIFFNESS_MEDIUM)
.setDampingRatio(SpringForce.DAMPING_RATIO_HIGH_BOUNCY)
val springAnimation = SpringAnimation(view, DynamicAnimation.TRANSLATION_X)
.setSpring(springForce)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment