I've a query regarding performance issue.
I've 6 EditText
s in a fragment. On each EditText
I've added a textWatcher
. Inside every afterTextChanged()
method I'm sending all the 6 values to the activity through interface. So, practically all 6 values are updated on each letter written in any of the text field. Suppose, if I've total 200 letters in all text fields then the void method of interface will be called 200 times. My question is, will this effect the performance even in lower speced devices ? Or it wouldn't bother so much. Please experts help me. (Code will be provided if needed).