我的Android项目处理各种片段和多个类。有一个片段类,它包含Sliding Menu Back和rightliding菜单选项。当按下EditText字段时,会显示软键盘,当按下菜单或其他操作栏按钮时,软键盘应该关闭,但它不会
hidekeyboard的功能是一个类,而EditText字段是多个类。
我该怎么做呢。
答案 0 :(得分:0)
试试这个:
// 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;
}
希望这有帮助。
答案 1 :(得分:0)
在清单文件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);
}