| 
 
 public static void hideSoftKeyboard(Activity activity, View view) {
 InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
 inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
 }
 
 |