((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(LoginActivity.this .getCu...
分类:
其他好文 时间:
2014-06-28 21:23:49
阅读次数:
194
关于收起虚拟键盘,网上能找到的大多是这个:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getWindowToken(), 0) ;
不过这有个问题,比如我们在一个页面中...
分类:
移动开发 时间:
2014-06-22 21:59:42
阅读次数:
250
[Android][Memory Leak]InputMethodManager内存泄露现象及解决
现象:
在特定的机型天语k_touch_v9机型上,某个界面上出现InputMethodManager持有一Activity,导致该Activity无法回收.如果该Activity再次被打开,则旧的会释放掉,但新打开的会被继续持有无法释放回收.MAT显示Path
to gc...
分类:
移动开发 时间:
2014-06-22 18:17:48
阅读次数:
344
一、自动弹出软键盘Timertimer=newTimer();timer.schedule(newTimerTask(){publicvoidrun(){InputMethodManagerinputMethodManager=(InputMethodManager)getSystemService...
分类:
移动开发 时间:
2014-05-27 00:07:18
阅读次数:
434