0

我有一个基于某些条件的编辑文本,我动态地想要执行点击,所以我使用:0editText.performClick()

使用这个触发点击事件,我也可以在编辑文本中看到焦点,但软键盘没有出现,我也试过: -

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(editText,
                    InputMethodManager.SHOW_IMPLICIT);

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(editText,
                    InputMethodManager.SHOW_FORCED);

但是键盘没有出现......任何想法......谢谢:)

4

1 回答 1

1

试试 InputMethodManager 的 toggleSoftInput 方法。

于 2012-12-29T17:22:51.033 回答