溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android點擊EditText文本框之外任何地方隱藏鍵盤的解決辦法

發(fā)布時間:2020-09-02 15:51:01 來源:腳本之家 閱讀:152 作者:qq_34378183 欄目:移動開發(fā)

1,實現(xiàn)方法一:

通過給當前界面布局文件的父layout設置點擊事件(相當于給整個Activity設置點擊事件),在事件里進行鍵盤隱藏

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:id="@+id/traceroute_rootview" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:background="@color/white" 
  android:clickable="true" 
  android:gravity="center_horizontal" 
  android:orientation="vertical" > 
</LinearLayout> 

加上id和clickable=true

然后在onCreate里,添加onClick事件的監(jiān)聽:

findViewById(R.id.traceroute_rootview).setOnClickListener(this); 

在onClick中:

@Override 
public void onClick(View v) { 
  switch (v.getId()) { 
  case R.id.traceroute_rootview: 
     InputMethodManager imm = (InputMethodManager) 
     getSystemService(Context.INPUT_METHOD_SERVICE); 
     imm.hideSoftInputFromWindow(v.getWindowToken(), 0); 
    break; 
  } 
}

這樣就可以完美的解決了輸入框外的隱藏效果,對于布局不是特別復雜或是其它觸摸事件少的情況下可以使用。

2,實現(xiàn)思路二:

通過dispatchTouchEvent每次ACTION_DOWN事件中動態(tài)判斷非EditText本身區(qū)域的點擊事件,然后在事件中進行屏蔽。

@Override 
public boolean dispatchTouchEvent(MotionEvent ev) { 
  if (ev.getAction() == MotionEvent.ACTION_DOWN) { 
    View v = getCurrentFocus(); 
    if (isShouldHideInput(v, ev)) { 
 
      InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
      if (imm != null) { 
        imm.hideSoftInputFromWindow(v.getWindowToken(), 0); 
      } 
    } 
    return super.dispatchTouchEvent(ev); 
  } 
  // 必不可少,否則所有的組件都不會有TouchEvent了 
  if (getWindow().superDispatchTouchEvent(ev)) { 
    return true; 
  } 
  return onTouchEvent(ev); 
} 

isShoudHideInput(View v,MotionEvent e)方法:

public boolean isShouldHideInput(View v, MotionEvent event) { 
  if (v != null && (v instanceof EditText)) { 
    int[] leftTop = { 0, 0 }; 
    //獲取輸入框當前的location位置 
    v.getLocationInWindow(leftTop); 
    int left = leftTop[0]; 
    int top = leftTop[1]; 
    int bottom = top + v.getHeight(); 
    int right = left + v.getWidth(); 
    if (event.getX() > left && event.getX() < right 
        && event.getY() > top && event.getY() < bottom) { 
      // 點擊的是輸入框區(qū)域,保留點擊EditText的事件 
      return false; 
    } else { 
      return true; 
    } 
  } 
  return false; 
} 

這種方法實現(xiàn)起來比較麻煩,解決思路與iOS中的事件分發(fā)機制是類似,對于處理隱藏事件比較清晰,通過層層事件分發(fā),然后判斷是否在需要屏蔽的區(qū)域。

1,實現(xiàn)方法一:

通過給當前界面布局文件的父layout設置點擊事件(相當于給整個Activity設置點擊事件),在事件里進行鍵盤隱藏

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:id="@+id/traceroute_rootview" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:background="@color/white" 
  android:clickable="true" 
  android:gravity="center_horizontal" 
  android:orientation="vertical" > 
</LinearLayout> 

加上id和clickable=true

然后在onCreate里,添加onClick事件的監(jiān)聽:

findViewById(R.id.traceroute_rootview).setOnClickListener(this); 

在onClick中:

@Override 
public void onClick(View v) { 
  switch (v.getId()) { 
  case R.id.traceroute_rootview: 
     InputMethodManager imm = (InputMethodManager) 
     getSystemService(Context.INPUT_METHOD_SERVICE); 
     imm.hideSoftInputFromWindow(v.getWindowToken(), 0); 
    break; 
  } 
}

這樣就可以完美的解決了輸入框外的隱藏效果,對于布局不是特別復雜或是其它觸摸事件少的情況下可以使用。

2,實現(xiàn)思路二:

通過dispatchTouchEvent每次ACTION_DOWN事件中動態(tài)判斷非EditText本身區(qū)域的點擊事件,然后在事件中進行屏蔽。

@Override 
public boolean dispatchTouchEvent(MotionEvent ev) { 
  if (ev.getAction() == MotionEvent.ACTION_DOWN) { 
    View v = getCurrentFocus(); 
    if (isShouldHideInput(v, ev)) { 
      InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); 
      if (imm != null) { 
        imm.hideSoftInputFromWindow(v.getWindowToken(), 0); 
      } 
    } 
    return super.dispatchTouchEvent(ev); 
  } 
  // 必不可少,否則所有的組件都不會有TouchEvent了 
  if (getWindow().superDispatchTouchEvent(ev)) { 
    return true; 
  } 
  return onTouchEvent(ev); 
} 

isShoudHideInput(View v,MotionEvent e)方法:

public boolean isShouldHideInput(View v, MotionEvent event) { 
  if (v != null && (v instanceof EditText)) { 
    int[] leftTop = { 0, 0 }; 
    //獲取輸入框當前的location位置 
    v.getLocationInWindow(leftTop); 
    int left = leftTop[0]; 
    int top = leftTop[1]; 
    int bottom = top + v.getHeight(); 
    int right = left + v.getWidth(); 
    if (event.getX() > left && event.getX() < right 
        && event.getY() > top && event.getY() < bottom) { 
      // 點擊的是輸入框區(qū)域,保留點擊EditText的事件 
      return false; 
    } else { 
      return true; 
    } 
  } 
  return false; 
} 

這種方法實現(xiàn)起來比較麻煩,解決思路與iOS中的事件分發(fā)機制是類似,對于處理隱藏事件比較清晰,通過層層事件分發(fā),然后判斷是否在需要屏蔽的區(qū)域。

以上所述是小編給大家介紹的Android點擊EditText文本框之外任何地方隱藏鍵盤的解決辦法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI