Join Slack
Powered by
toolbar?.let { val textView: TextView = it.fi...
# android
t
tgmcians
09/01/2017, 8:22 PM
toolbar?.let { val textView: TextView = it.findViewById(R.id.titleToolbar) textView.text = getString(R.string.tb_home) }
b
budioktaviyan
09/02/2017, 1:05 AM
use the kotlin android extensions, could save you more than this. like
toolbar?.let { titleToolbar.text = getString(R.string.tb_home) }
2
Views
Open in Slack
Previous
Next