I want to set title and subtitile of my action bar before compile time. I got a way to do it like this:
ActionBar ab = getActionBar(); ab.setTitle(\"My Title
This is trivial one-liner in Kotlin
supportActionBar?.title = getString(R.string.coolTitle)