Skip to content

Instantly share code, notes, and snippets.

@jirevwe
Created July 29, 2019 22:49
Show Gist options
  • Save jirevwe/330046f5a82cabe8b6ed2123d1a6400c to your computer and use it in GitHub Desktop.
Save jirevwe/330046f5a82cabe8b6ed2123d1a6400c to your computer and use it in GitHub Desktop.
fun <V : View> Activity.bind(@IdRes resource: Int): V {
val lazyValue: Lazy<V> = lazy { findViewById(resource) }
return lazyValue.value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment