I'm trying to come up with a way to have an EditText update the data of a ViewModel and simultaneously observe that data for any changes (e.g. changes brought about by manipulating the DB). Is there a way to do this without using the data binding library?
The main problem I'm facing while simply using MutableLiveData is the following:
when the user enters text in the EditText, a TextWatcher pokes the ViewModel to update its data, which in turn will set the new text to the MutableLiveData object. Because the EditText is observing the LiveData, the onChange is triggered and sets the text of the EditText accordingly, which in turn will trigger the TextWatcher again creating an infinite loop.
I also ran into this problem since I don't like the databinding library. I did as @kAliert said, but in my ViewModel
to keep the logic there. I just added a simple catch on the function that receives my text changes events in the ViewModel
. It works well.
fun editTextChanged(newText: String) {
if (newText == textLiveData.value) {
return
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With