Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BurakDizlek/fcb346c13b3b1a83689bc5e72705ab4c to your computer and use it in GitHub Desktop.
Save BurakDizlek/fcb346c13b3b1a83689bc5e72705ab4c to your computer and use it in GitHub Desktop.
fun sureChildViewVisibleOnScreen(childView: View, parenView: View): Boolean {
val scrollBounds = Rect()
parenView.getHitRect(scrollBounds)
return childView.getLocalVisibleRect(scrollBounds) // if childView visible return true else false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment