11

我有一个Activity单曲Fragment。碎片上有一个EditText

一旦显示片段,键盘就会弹出,但是我设法在清单 android:windowSoftInputMode="stateHidden" 中阻止它设置

但是,还有一个按钮,它打开一个带有另一个 EditText 的对话框。

我有一种方法可以在对话框关闭时自动关闭键盘。

public static void closeInput(final View caller) {      
    caller.post(new Runnable() {
        @Override
        public void run() {
            InputMethodManager imm = (InputMethodManager) caller.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(caller.getWindowToken(), InputMethodManager.HIDE_IMPLICIT_ONLY);
        }
    });
}

该方法不是一个漂亮的hack,它有一些问题。对话框EditTextinputType="numberDecimal". closeInput()似乎没有关闭键盘,只是将其更改为默认的字母状态。

这里发生了什么?

4

7 回答 7

21

就我而言,我使用了方法:

public static void closeInput(final View caller) {  
    caller.postDelayed(new Runnable() {
        @Override
        public void run() {
            InputMethodManager imm = (InputMethodManager) caller.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(caller.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
        }
    }, 100);
}

由于清单中的活动设置,它拒绝正常工作,如果我记得你不能android:windowSoftInputMode="any_of_these"设置

于 2013-06-30T18:19:40.160 回答
13

从片段 onCreateView() 方法中,您可以执行以下操作:

getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN)

它会在 Dismiss of Dialog 时自动隐藏软键盘

于 2016-04-05T09:33:12.317 回答
7

in BaseDialog.java

protected void hideSoftKeyboard() {
    InputMethodManager imm = (InputMethodManager) this.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
    if (imm.isActive()) {
        imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
    }
}
于 2015-01-28T06:24:43.027 回答
2

就我而言,我使用的是:

android:windowSoftInputMode="adjustPan|stateVisible"

我删除了stateVisible

android:windowSoftInputMode="adjustPan"

而且onDismiss(),不需要调用hideSoftInput方法。

于 2020-04-23T09:26:01.610 回答
1

就我而言,解决方案是将键盘隐藏在对话框中

dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
        @Override
        public void onDismiss(DialogInterface dialog) {
            View view = activity.getCurrentFocus();
            if (view != null) {
                InputMethodManager inputManager = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
                inputManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
            }
        }
    }); 
于 2015-09-18T09:48:27.770 回答
1

努力解决这个问题并在此处查看答案后,大多数似乎确实有效。由于不希望使用类而只是使用 builder,因此答案https://stackoverflow.com/a/36422411/1815624不是一个可行的解决方案。

意识到其他人可能有同样的问题,答案来自两者: https ://stackoverflow.com/a/17393446/1815624 & https://stackoverflow.com/a/32648971/1815624

所以组合的答案是从片段本身中获取视图:

(有人有理由不这样做吗?)

void closeKeyboard(final View caller){
    caller.post(new Runnable() {
        @Override
        public void run() {
            InputMethodManager imm = (InputMethodManager) caller.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(caller.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
        }
    });
}

...

dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
    @Override
    public void onDismiss(DialogInterface dialog) {
        closeKeyboard(getView());
    }
});
于 2017-01-11T09:03:54.947 回答
0

找到了一种隐藏对话框键盘的简单方法

  1. dialog.setCanceledOnTouchOutside(false)
  2. 在对话框关闭之前调用 hideKeyboardFromDialogBeforeDismiss() ,可能在取消按钮单击事件上,不应调用 onDismiss 或 onCancelListener
    binding.cancelBtn.setOnClickListener {       
        STSystemUtil.hideKeyboardFromDialogBeforeDismiss(dialog = dialog) 
        binding.root.postDelayed({ dialog?.dismiss() }, 200)
    }
    
    @JvmStatic
    @JvmOverloads
    fun getInputMethodManager(context: Context? = STInitializer.application()): InputMethodManager? {
        return context?.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager?
    }

    /*
     * 注意: 如果 dialog 包含一个或者多个EditText, 点击外部(canceledOnTouchOutside==true)不会隐藏已经显示的输入法弹框, 且通过点击取消按钮必须先隐藏输入法弹框再延时 dismiss, 因为在 onCancel/onDismiss 中 dialog?.currentFocus?.windowToken 必然已经是 null, 且 inputMethodManager?.isActive 必然是 false
     * ----> canceledOnTouchOutside = false
     * ----> binding.cancelBtn.setOnClickListener {
     *          STSystemUtil.hideKeyboardFromDialogBeforeDismiss(dialog)
     *          binding.root.postDelayed({ dialog?.dismiss() }, 200)
     *       }
     */
    @JvmStatic
    @JvmOverloads
    fun hideKeyboardFromDialogBeforeDismiss(context: Context? = STInitializer.application(), dialog: Dialog? = null) {
        val inputMethodManager: InputMethodManager? = getInputMethodManager(context)
        if (dialog == null) {
            if (inputMethodManager?.isActive == true) {
                inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS)
            }
        } else {
            inputMethodManager?.hideSoftInputFromWindow(dialog.currentFocus?.windowToken, InputMethodManager.HIDE_NOT_ALWAYS)
        }
    }
于 2021-01-07T05:09:31.627 回答