Set EditText digits programmatically kotlin
If you check the docs for EditText , you’ll find a setText() method. It also inherits TextView ‘s setText(CharSequence) and setText(int) methods, so you can set it just like a regular TextView : This is the solution in Kotlin MainActivity.kt activity_main.xml Output
Set EditText digits programmatically kotlin Read More »