从片段导航到另一个片段时隐藏键盘

我有一个包含编辑文本的片段。按下“编辑文本”按钮时,将显示键盘。当按下右上角的“保存”按钮时,应用程序将返回到上一个片段,但键盘仍然存在。

我希望在导航到上一个片段时隐藏键盘。

请注意,我尝试了这个解决方案:关闭/隐藏Android软键盘

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

我试图在onCreate方法的两个片段中都使用它。

我还尝试在布局中隐藏软键盘:

android:windowSoftInputMode="stateAlwaysHidden"

不幸的是,这些都没有奏效。

我会发布一些照片,但我还没有足够的声誉。我将不胜感激任何建设性的帮助和意见,不要忘记“一个聪明的人可以从一个愚蠢的问题中学到比一个愚蠢的人从一个明智的答案中学到更多的东西”:)

问候, 亚历山德拉


答案 1

将隐藏键盘的代码放在“保存按钮”单击侦听器中,然后使用此方法隐藏键盘:

    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);
         }
     }

答案 2

科特林

对于 Kotlin,你可以将其用作顶级函数,只需将代码添加到单独的类中,例如 .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)
    }
}

要从 Fragment 访问它,请按如下方式调用它:

hideKeyboard(activity as YourActivity)

感谢 Silvia H 的 Java 代码。


推荐