典型应用
1.调用显示系统默认的输入法
方法一、
1 2 3 4 |
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.showSoftInput(m_receiverView) |
m_receiverView(接受软键盘输入的视图(View)
InputMethodManager.SHOW_FORCED(提供当前操作的标记,SHOW_FORCE[……]