kotlin string to editabkle code example
Example 1: kotlin operator == cannot be applied to editable and string
val message=edtTxt.text.toString()
Example 2: type mismatch: requierd editable found string? in EditText Android
Use setText(String), since editText.text expects an Editable, not a String.