13
Establecer texto en EditText Kotlin
Estoy tratando de configurar el texto en un EditText pero dice: Type mismatch. Required: Editable Found: String Mi código es el siguiente: String name = "Paramjeet" val nametxt = findViewById (R.id.nametxt) as EditText nametxt.text = name No diga usar setTextporque estoy usando kotlin, no Java.