i need to programm an android app, which has 4 textboxes.
If i write a char or number in 1 of this boxes all other boxes needs to be refreshed.
Now the point. I am using the onchange event, but there is a recursion and every onchange of the other boxes are executed. Is there a simple way without time or something to abort the other onchange events?
Cheers
You have to set the OnFocusChangeListener for each EditView…
So that when the control
hasFocusit will call only the functionality you set in the onFocusChange method for only that EditView.