Skip to content

Instantly share code, notes, and snippets.

@cvoronin
Created November 14, 2016 19:12
Show Gist options
  • Save cvoronin/bb2cbe2ffe03c93b5b608430e17d3272 to your computer and use it in GitHub Desktop.
Save cvoronin/bb2cbe2ffe03c93b5b608430e17d3272 to your computer and use it in GitHub Desktop.
[ Kotin ] ViewFinctions
fun ViewGroup.children() : List<View> = arrayListOf<View>().apply {
for (i in 0..childCount-1) {
add(getChildAt(i))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment