Below is my textWatcher class:
class MyTextWatcher(private val editText: EditText) : TextWatcher {
override fun beforeTextChanged(
s: CharSequence?,
start: Int,
count: Int,
after: Int
) {
}
override fun onTextChanged(
s: CharSequence?,
start: Int,
before: Int,
count: Int
) {
val text = editText.text.toString()
if (text.startsWith(" ")) {
editText.setText(text.trim())
}
else if (text.endsWith(" ")){
editText.setText(text.trim())
}
else if (text == " "){
editText.setText(text.trim())
}
}
override fun afterTextChanged(s: Editable?) {}
}
After writing in editText field when i press spacebar in the end of word, editText cursor moves to the beginning of the editText field before 1st letter.
What should i do such that when i press spacebar cursor should remain at the same position it should not go at beginning?