How to do clear focus for Multiple EditText in Android -


In my application, I have 3 EditText with focus The problem is, I want to clear the focus of the EditText , which is noted when the user clicks on the submit button, I edittext.clearFocus () is used If I can clear the focus for single code in EditText , multiple EditText

click on the submit button, Has suggested and it works great

  yourEditText.setFocusable (false); yourEditText.setFocusableInTouchMode (true); YourEditText1.setFocusable (wrong); YourEditText1.setFocusableInTouchMode (true); YourEditText2.setFocusable (wrong); yourEditText2.setFocusableInTouchMode (true);    

Comments

Popular posts from this blog

asp.net - Procedure or function "Procedure name" expects a parameter "Param name" which was not supplied occurs rarely -

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -

sql server ce - Is there some way to make sqlce3.5 and 4.0 co-exist in the C# project -