android hide soft keyboard

‮www‬.lautturi.com
android hide soft keyboard
public void hideKeyboard(View view) {
    Context context = view.getContext();
    InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}

usage:

call from inside an Activity / Fragment

hideKeyboard(view);
Created Time:2017-08-30 20:59:48  Author:lautturi