Hide keyboard when navigating from a fragment to another

34,408

Solution 1

Put the code that hides the keyboard in your "save button" click listener, and use this method to hide the keyboard:

    public static void hideKeyboard(Activity activity) {
        InputMethodManager inputManager = (InputMethodManager) activity
        .getSystemService(Context.INPUT_METHOD_SERVICE);

        // check if no view has focus:
         View currentFocusedView = activity.getCurrentFocus();
         if (currentFocusedView != null) {
             inputManager.hideSoftInputFromWindow(currentFocusedView.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
         }
     }

Solution 2

Kotlin

For Kotlin, you can use this as a top level function, just add the code to a separate class such as Utils.kt.

fun hideKeyboard(activity: Activity) {
    val inputMethodManager =
        activity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager

    // Check if no view has focus
    val currentFocusedView = activity.currentFocus
    currentFocusedView?.let {
        inputMethodManager.hideSoftInputFromWindow(
            currentFocusedView.windowToken, InputMethodManager.HIDE_NOT_ALWAYS)
    }
}

To access it from Fragment, call it like:

hideKeyboard(activity as YourActivity)

Thanks to Silvia H for Java code.

Solution 3

Easiest way to hide keyboard in fragment or Activity

Soluton : 1

//hide keyboard
public static void hideKeyboard(Context ctx) {
    InputMethodManager inputManager = (InputMethodManager) ctx
            .getSystemService(Context.INPUT_METHOD_SERVICE);

    // check if no view has focus:
    View v = ((Activity) ctx).getCurrentFocus();
    if (v == null)
        return;

    inputManager.hideSoftInputFromWindow(v.getWindowToken(), 0);
}

Solution : 2

    InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
    inputMethodManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);

Solution 4

@Override
    public void onDestroyView() {
        super.onDestroyView();
        View view = getActivity().getCurrentFocus();
        if (view != null) {
            InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
    }
}
Share:
34,408
Alexandra Alstanei
Author by

Alexandra Alstanei

Updated on July 09, 2022

Comments

  • Alexandra Alstanei
    Alexandra Alstanei almost 2 years

    I have a Fragment that contains an Edit Text. When the Edit Text is pressed, the keyboard is being shown. When pressed the Save button in the upper corner, the application returns to the previous fragment, but the keyboard persists.

    I would like the keyboard to be hidden when navigating to the previous fragment.

    Please, note that I tried this solution: Close/hide the Android Soft Keyboard.

    InputMethodManager imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(myView.getWindowToken(), 0);
    

    I tried to use this in both fragments, in the onCreate method.

    I also tried to hide the soft keyboard in the layout:

    android:windowSoftInputMode="stateAlwaysHidden"
    

    None of these worked, unfortunately.

    I would have posted some pictures, but I do not have enough reputation yet. I would appreciate any constructive help and opinion and do not forget that "A wise man can learn more from a foolish question than a fool can learn from a wise answer." :)

    Regards, Alexandra

  • DaveSav
    DaveSav about 9 years
    Put that code in a public class and then you can call it with one line from whatever fragment needs it. Good stuff - been looking for this for ages
  • Zaeem Sattar
    Zaeem Sattar about 7 years
    best answer (y)
  • murt
    murt over 3 years
    could be activity.currentFocus?.let { currentFocusedView ->