I am using the following code to detect the user pressing Return on the keyboard:
EditText etMyEditText = FindViewById<EditText>(Resource.Id.etMyEditText);
etMyEditText.KeyPress += (intentSender, e) =>
{
if (e.Event.Action == KeyEventActions.Down && e.KeyCode == Keycode.Enter)
{
e.Handled = true;
}
};
But I want to dismiss the keyboard after they press the return key.
Can anyone shed some light on how to do this?
Thanks for the help
etMyEditTextbeetCityTownZip? – Aaron He Feb 21 at 0:16