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:
How to Create a Hyperlink Using Android TextView | Learn to Droid
The TextView is a widget in Android that allows you to display text to the user. It is also possible to use the Android TextView widget to create a hyperlink which can load a web page in a mobile web browser when clicked.

