如题,即使当前的焦点不是在文字输入框的情况。
------解决方案--------------------
不明白你要说什么
------解决方案--------------------
只有控件的ONKEY事件,还有键盘的ONKEY?
------解决方案--------------------
你是要进入某个界面自动弹出软键盘吗?
------解决方案--------------------
自定义键盘~
------解决方案--------------------
自动弹出很简单哦!给你贴段代码
InputMethodManager imm = (InputMethodManager)你的Activity.this.getSystemService(INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
------解决方案--------------------
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.showSoftInput(你当前画面的View对象, 0);
------解决方案--------------------
12#的绑定了对象了