I have multiple textboxes (EditText boxes) on the screen at once. I wish to click on one, enter data, click on the next, enter data etc and only press Enter (or Done) when finished. Only the data of the last textbox is available when I do this. I have tried using TextChanged and FocusChanged events to accomplish this but neither seems to do anything.
Changing text as I am entering it does not raise the TextChanged event and clicking on the next textbox does not raise the FocusChanged event.
1) How can I enter multiple data items with only one press of Enter(Done)?
2) Exactly what is necessary for the events above to be called?