Skip to content

Instantly share code, notes, and snippets.

@sebaslogen
Created March 3, 2018 10:37
Show Gist options
  • Save sebaslogen/74aa31c58b2a680eaa3057382378bf8e to your computer and use it in GitHub Desktop.
Save sebaslogen/74aa31c58b2a680eaa3057382378bf8e to your computer and use it in GitHub Desktop.
Kotlin Android CustomView with default parameters
class MyCustomView @JvmOverloads constructor(
context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : View(context, attrs, defStyleAttr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment