I have simple test app (attached) with 3 views (2 EditText and 1 button). I want to save EditText2's change, all at once after editing is completed, so I thought FocusChanged event is better than TextChanged event which is fired for every letter entered or deleted.
After entering some text at EditText2 field, If I click on EditText1, EditText2_FocusChanged would be fired as expected. However if I click Button1 instead of EditText1, the event in question wouldn't be fired.
Did I miss anything? Is there a workaround?
Thanks in advance for your helps!
After entering some text at EditText2 field, If I click on EditText1, EditText2_FocusChanged would be fired as expected. However if I click Button1 instead of EditText1, the event in question wouldn't be fired.
Did I miss anything? Is there a workaround?
Thanks in advance for your helps!