1

我已将 android 应用程序移植到黑莓 10 设备。为了隐式显示键盘,我使用了以下代码

InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(MyEditTextName, InputMethodManager.SHOW_IMPLICIT);

上面的代码在 android 中工作,但在 Blackberry Z10 设备中不工作。如何通过 android 代码在 blackberry Z10 设备中显示/隐藏软键盘?提前致谢。

4

1 回答 1

0

切换键盘终于起作用了。感谢Nate先生

InputMethodManager imm = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
                            imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
于 2013-10-29T04:59:33.923 回答