android软件盘管理

来源:互联网 发布:网游网络加速器哪个好 编辑:程序博客网 时间:2024/05/01 10:57
InputMethodManager systemService 
(InputMethodManager) EditText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
//弹出软件盘
systemService.showSoftInput(EditText, 0);
//收起软件盘
systemService.hideSoftInputFromWindow(EditText.getWindowToken(), 0); 

0 0