Skip to content

Instantly share code, notes, and snippets.

@adriantache
Created November 23, 2020 17:25
Show Gist options
  • Save adriantache/57a0ce08f46f6ead6b90f2e830c96775 to your computer and use it in GitHub Desktop.
Save adriantache/57a0ce08f46f6ead6b90f2e830c96775 to your computer and use it in GitHub Desktop.
fun View.setVisibility(visibility: Int) {
val motionLayout = parent as MotionLayout
motionLayout.constraintSetIds.forEach {
val constraintSet = motionLayout.getConstraintSet(it) ?: return@forEach
constraintSet.setVisibility(this.id, visibility)
constraintSet.applyTo(motionLayout)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment