我有一个编辑文本,我设置了以下内容
editText.requestFocus()
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(ediText, InputMethodManager.SHOW_IMPLICIT);
它在 ICS 和 JellyBean 中工作得非常好,但在 Gingerbread/Froyo 等中,编辑文本不可编辑(无论用户输入什么都不会显示在编辑文本中)。我对这种奇怪的行为一无所知。有什么办法解决这个问题吗?