我的 Android 项目处理各种片段和多个类。有一个片段类包含滑动菜单返回和右滑动菜单选项。当按下 EditText 字段时,会显示软键盘,当按下菜单或其他操作栏按钮时,软键盘应该关闭,但不会
hidekeyboard 的功能是一个类,而 EditText 字段是多个类。
我该怎么做。
尝试这个 :
// To hide Keyboard if touched outside its area.. //
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
View v = getCurrentFocus();
boolean ret = super.dispatchTouchEvent(event);
if (v 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];
Log.d("Activity",
"Touch event " + event.getRawX() + "," + event.getRawY()
+ " " + x + "," + y + " rect " + w.getLeft() + ","
+ w.getTop() + "," + w.getRight() + ","
+ w.getBottom() + " coords " + scrcoords[0] + ","
+ 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;
}
希望这可以帮助。
将此添加到清单文件 android:windowSoftInputMode="stateAlwaysHidden"
中,因此最初您的屏幕不会弹出键盘。
调用此方法启用它。
private void softKeyboard() {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(partialEditText, InputMethodManager.SHOW_IMPLICIT);
}
当您即将移动到其他屏幕时调用此方法
private void hideKeyboard() {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(partialEditText.getWindowToken(), 0);
}