Skip to content

Instantly share code, notes, and snippets.

@nickbutcher
Created July 24, 2019 21:08
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickbutcher/3b18682130a6b1c008a425af2c1179a5 to your computer and use it in GitHub Desktop.
Save nickbutcher/3b18682130a6b1c008a425af2c1179a5 to your computer and use it in GitHub Desktop.
/* Copyright 2019 Google LLC.
SPDX-License-Identifier: Apache-2.0 */
fun animateVisibility(view: View, visible: Boolean) {
val targetAlpha = if (visible) 1f else 0f
if (view.alpha == targetAlpha) return
view.visibility = View.VISIBLE
val spring = view.spring(SpringAnimation.ALPHA)
(view.getTag(R.id.tag_pending_end_listener) as?
DynamicAnimation.OnAnimationEndListener)?.let {
spring.removeEndListener(it)
}
if (!visible) {
val listener = {
override fun onAnimationEnd() {
spring.removeEndListener(this)
view.visibility = View.GONE
}
}
spring.addEndListener(listener)
view.setTag(R.id.tag_pending_end_listener, listener)
}
spring.animateToFinalPosition(targetAlpha)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment