Android在btn点击隐藏键盘

这个问题在这里已经有了答案:

  • 关闭/隐藏Android软键盘69个答案

  • 隐藏虚拟键盘:

    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
    

    InputMethodManager inputManager = (InputMethodManager)
                                      getSystemService(Context.INPUT_METHOD_SERVICE); 
    
    inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
                                         InputMethodManager.HIDE_NOT_ALWAYS);
    

    我把它放在onClick(View v)事件之后。 你需要import android.view.inputmethod.InputMethodManager;

    单击按钮时键盘将隐藏。

    链接地址: http://www.djcxy.com/p/16605.html

    上一篇: Android hide keyboard on btn click

    下一篇: How to hide keyboard by default and show only when click on EditText