软键板不会来

时间:2012-12-29 17:12:09

标签: android android-edittext android-softkeyboard

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

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

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

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

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

1 个答案:

答案 0 :(得分:1)

尝试使用InputMethodManager的toggleSoftInput方法。