In my application I need to make something happen when an EditText loses its focus. When editing an EditText I can’t make it lose its focus. In windows phone there is the this.Focus(); method but here in android it doesn’t seem to be the same. How can I do???
Share
To focus away from Edit Text one should use clearFocus();
Now comes if you do need to handle any particular event if the focus is changed then..