【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
				}
        } 
	}


【android】禁止Edittext弹出软键盘并且使光标正常显示,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。