Intents
There is Explicit Intents and Implicit Intents.
To set intent into another activity:
Intent(this, AnotherActivity::class.java).also { startActivity(it)}
val intent = Intent(this, AnotherActivity::class.java)
startActivity(intent)
To get texts from strings.xml
getString(R.string.app_name)
To settext into hyperlinks: