禁止弹出系统软键盘
2017-08-02 本文已影响0人
Imbyj
项目开发中遇到一个问题就是点击EditText文本框编辑文本时,会出现系统自带的软键盘,而我并不需要系统的软键盘使用自己定义的,于是我就在网上查找了一下如何去除系统软键盘的问题,最好用的就是通过反射的方式:如下代码
public void disableShowSoftInput(){
if(android.os.Build.VERSION.SDK_INT<=14){
numberLabel.setInputType(InputType.TYPE_NULL);
}else{
Class cls=EditText.class;
Method method;
try{
method=cls.getMethod("setShowSoftInputOnFocus",boolean.class);
method.setAccessible(true);
method.invoke(numberLabel,false);
}catch(Exception e){
}
numberLabel是EditText