textview android kotlin code example
Example 1: android studio kotlin acces text from text view
val textView: TextView = findViewById(R.id.android_text) as TextView
Example 2: how to set text in textview in android kotlin
// Load and use views afterwards
val tv1: TextView = findViewById(R.id.textView1)
tv1.text = "Hello"
Example 3: kotlin textview get text
textView.text.toString()