Skip to content

Instantly share code, notes, and snippets.

@colinrtwhite
Created September 4, 2018 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colinrtwhite/fdb23be99db387eb8dbc5fc01ec1dbea to your computer and use it in GitHub Desktop.
Save colinrtwhite/fdb23be99db387eb8dbc5fc01ec1dbea to your computer and use it in GitHub Desktop.
@Suppress("UNCHECKED_CAST")
@JvmOverloads fun <V : View> ViewGroup.inflate(@LayoutRes layoutRes: Int, attachToRoot: Boolean = false): V {
return LayoutInflater.from(context).inflate(layoutRes, this, attachToRoot) as V
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment