Skip to content

Instantly share code, notes, and snippets.

@longliveenduro
Last active August 29, 2015 14:05
Show Gist options
  • Save longliveenduro/6fd1a1109f1e3d946231 to your computer and use it in GitHub Desktop.
Save longliveenduro/6fd1a1109f1e3d946231 to your computer and use it in GitHub Desktop.
implicit class RichView[V <: android.view.View](view: V) {
def onClick[U](f: android.view.View => U): V = {
view.setOnClickListener(new android.view.View.OnClickListener {
def onClick(p: android.view.View): Unit = f(p)
})
view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment