Android 检测键盘显示或隐藏键盘的实现代码
Android检测键盘是否显示及隐藏键盘的方法~~
Android中对于键盘的隐藏与显示的文章很多,今天公司项目需求不仅需要键盘隐藏和显示还需要对键盘的状态进行检查,这里做一个简单的实现实例,供大家参考:
实现代码:
packagecom.newland.util;
importandroid.app.Activity;
importandroid.view.View;
importandroid.view.inputmethod.InputMethodManager;
/**
*系统输入法键盘检测工具
*
*@authoryuyh
*
*/
publicclassIMEUtil{
/**
*隐藏键盘
*@paramcontext
*/
publicstaticvoidhideIme(Activitycontext){
if(context==null)
return;
finalViewv=context.getWindow().peekDecorView();
if(v!=null&&v.getWindowToken()!=null){
InputMethodManagerimm=(InputMethodManager)context.getSystemService(Activity.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(v.getWindowToken(),0);
}
}
/**
*检查系统键盘是否显示
*@paramcontext
*@return
*/
publicstaticbooleanisSysKeyboardVisiable(Activitycontext){
finalViewv=context.getWindow().peekDecorView();
if(v!=null&&v.getWindowToken()!=null){
returntrue;
}
returnfalse;
}
}
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!