First post - Hello World!
09 Jun 2017Hi! This is first test post on this blog!
Testing embedded YouTube video:
Code
This is just a sample of some Kotlin
code snippet.
// Standard onClickListener
view.setOnClickListener(object : View.OnClickListener {
override fun onClick(v: View?) {
toast("Hello World!")
}
})
// Proper "Kotlinish" onClickListener (with Anko)
view.setOnClickListener { toast("Hello World!") }
More to comeā¦