Skip to content

Instantly share code, notes, and snippets.

@Lamartio
Created September 10, 2018 11:50
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 Lamartio/0f624e4de501c9f0d45668e98fe29573 to your computer and use it in GitHub Desktop.
Save Lamartio/0f624e4de501c9f0d45668e98fe29573 to your computer and use it in GitHub Desktop.
LinearLayout(this).apply {
orientation = LinearLayout.VERTICAL
addView(TextView(context).apply {
text = "Hello"
})
addView(TextView(context).apply {
text = "click me"
setOnClickListener {
// ...
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment