Ranken Technical College
Spring 2022 AWD 1112 Mobile Application Development
Code snippet for hiding the soft keyboard...
public void hideKeyboard(Context context, View view) {
InputMethodManager imm = (InputMethodManager)context.getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}