点击屏幕其它地方,让EditText失去焦点,并获取EditText输入的类容

隐藏软键盘的方法:

[java]  view plain  copy
 
  1. public static Boolean hideInputMethod(Context context, View v) {  
  2.         InputMethodManager imm = (InputMethodManager) context  
  3.                 .getSystemService(Context.INPUT_METHOD_SERVICE);  
  4.         if (imm != null) {  
  5.             return imm.hideSoftInputFromWindow(v.getWindowToken(), 0);  
  6.         }  
  7.         return false;  
  8.     }  

判断当前点击屏幕的地方是否是软键盘:

[java]  view plain  copy
 
  1. public static boolean isShouldHideInput(View v, MotionEvent event) {  
  2.         if (v != null && (v instanceof EditText)) {  
  3.             int[] leftTop = { 00 };  
  4.             v.getLocationInWindow(leftTop);  
  5.             int left = leftTop[0], top = leftTop[1], bottom = top + v.getHeight(), right = left  
  6.                     + v.getWidth();  
  7.             if (event.getX() > left && event.getX() < right  
  8.                     && event.getY() > top && event.getY() < bottom) {  
  9.                 // 保留点击EditText的事件  
  10.                 return false;  
  11.             } else {  
  12.                 return true;  
  13.             }  
  14.         }  
  15.         return false;  
  16.     }  

覆写 activity 的点击事件的分发方法dispatchTouchEvent:

[java]  view plain  copy
 
  1. @Override  
  2.     public boolean dispatchTouchEvent(MotionEvent ev) {  
  3.         if (ev.getAction() == MotionEvent.ACTION_DOWN) {  
  4.             View v = getCurrentFocus();  
  5.             if (isShouldHideInput(v, ev)) {  
  6.                 if(hideInputMethod(this, v)) {  
  7.                     return true//隐藏键盘时,其他控件不响应点击事件==》注释则不拦截点击事件  
  8.                 }  
  9.             }  
  10.         }  
  11.         return super.dispatchTouchEvent(ev);  
  12.     }  


 当然还有其他比较笨的方法,比如在屏幕上覆盖一层透明的view,设置其点击事件,但是并不可取,而且使用此方法更加有利于你对view的事件分发机制的了解。

还是那句话,欢迎各位大侠批评指正。

你可能感兴趣的:(#,android技术)