标签:des android class blog code java
关于收起虚拟键盘,网上能找到的大多是这个:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(editText.getWindowToken(), 0) ;
InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE); if(imm != null) {
imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0); }
标签:des android class blog code java
原文地址:http://blog.csdn.net/howlaa/article/details/32126467