How to do clear focus for Multiple EditText in Android -
 In my application, I have 3     click on the submit button, Has suggested and it works great   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     
 
 yourEditText.setFocusable (false); yourEditText.setFocusableInTouchMode (true); YourEditText1.setFocusable (wrong); YourEditText1.setFocusableInTouchMode (true); YourEditText2.setFocusable (wrong); yourEditText2.setFocusableInTouchMode (true);    
 
  
Comments
Post a Comment