最近做的项目是7.0的,隐藏软键盘的时候,传统的做法是在配置文件中设置android:windowSoftInputMode="stateAlwaysHidden"
实际运行后发现软键盘依然会弹出来。7.0以前的版本没有问题
解决方法:
public static void hideSoftInput(Context context, EditText edit) {
edit.clearFocus();
InputMethodManager inputManger = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputManger.hideSoftInputFromWindow(edit.getWindowToken(), 0);
}
2
public static void disableSoftInputFromAppearing(EditText editText) {
if (Build.VERSION.SDK_INT >= 11) {
editText.setRawInputType(InputType.TYPE_CLASS_TEXT);
editText.setTextIsSelectable(true);
} else {
editText.setRawInputType(InputType.TYPE_NULL);
editText.setFocusable(true);
}
}