gpt4 book ai didi

Android:隐藏软输入键盘

转载 作者:太空狗 更新时间:2023-10-29 15:53:26 24 4
gpt4 key购买 nike

我需要隐藏软键盘以响应单击按钮。我看到了一些关于此的帖子,并尝试了:

InputMethodManager im = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(myEditText1.getWindowToken(), 0);

效果很好。但现在我有两个 EditText View 。无论选择哪个 EditText,我现在如何隐藏软键盘?我也尝试过

InputMethodManager im = (InputMethodManager) getSystemService(
Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(myEditText1.getWindowToken(), 0);
im.hideSoftInputFromWindow(myEditText2.getWindowToken(), 0);

,但这没有用...

感谢您的帮助!

编辑:找到解决方案。发布在下方。

最佳答案

简单地说,您不需要指向特定的 View 。我正在使用它并且有效:)

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

关于Android:隐藏软输入键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22199742/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com