私はこのチュートリアルに従っています。
コードは1つで正常に機能していeditText
ます。しかし、今では多くの(ほぼ10)EditText
フィールドがあります。このコードをすべてのフィールドで繰り返すと、コードが長くなります。フィールドの外側をクリックしたときに仮想キーボードを無効にする方法を教えてもらえますか?
私はこのチュートリアルに従っています。
コードは1つで正常に機能していeditText
ます。しかし、今では多くの(ほぼ10)EditText
フィールドがあります。このコードをすべてのフィールドで繰り返すと、コードが長くなります。フィールドの外側をクリックしたときに仮想キーボードを無効にする方法を教えてもらえますか?
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
View view = getCurrentFocus();
boolean ret = super.dispatchTouchEvent(event);
if (view instanceof EditText) {
View w = getCurrentFocus();
int scrcoords[] = new int[2];
w.getLocationOnScreen(scrcoords);
float x = event.getRawX() + w.getLeft() - scrcoords[0];
float y = event.getRawY() + w.getTop() - scrcoords[1];
if (event.getAction() == MotionEvent.ACTION_UP
&& (x < w.getLeft() || x >= w.getRight()
|| y < w.getTop() || y > w.getBottom()) ) {
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
}
}
return ret;
}
これはあなたを助けるかもしれません..それをチェックしてください
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
このコードを使用して、親レイアウトに関連付けられているOnTouchListenerのonTouchDown()メソッド内のキーボードを非表示にします。
これがお役に立てば幸いです。
マニフェストで宣言する
<activity android:name=".YourActivity"
android:windowSoftInputMode="stateHidden"/>