【android】禁止Edittext弹出软键盘而且使光标正常显示


	/**
	 * 禁止Edittext弹出软件盘,光标依旧正常显示。
	 */
	public void disableShowSoftInput()
	{
		if (android.os.Build.VERSION.SDK_INT <= 10) 
		{
				editText.setInputType(InputType.TYPE_NULL);  
        } 
		else {  
                Class<EditText> cls = EditText.class;  
                Method method;
	            try { 
	                method = cls.getMethod("setShowSoftInputOnFocus",boolean.class);  
	                method.setAccessible(true);  
	                method.invoke(editText, false);  
	            }catch (Exception e) {
					// TODO: handle exception
				}
	            
	            try { 
	                method = cls.getMethod("setSoftInputShownOnFocus",boolean.class);  
	                method.setAccessible(true);  
	                method.invoke(editText, false);  
	            }catch (Exception e) {
					// TODO: handle exception
				}
        } 
	}


posted @ 2015-03-04 20:07  blfshiye  阅读(398)  评论(0编辑  收藏  举报