rv中有输入框的时候 焦点会一直跳到第一个 做列表输入的时候问题就很多
解决方案:
1. Activity 中(加这个可以在点击非et部分时收起键盘,如不需要则不加 看2)
/**
* 获取点击事件
*/
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
if (ev.getAction() == MotionEvent.ACTION_DOWN) {
View view = getCurrentFocus();
if (isHideInput(view, ev)) {
HideSoftInput(view.getWindowToken());
view.clearFocus();
mBinding.btnNext.requestFocus();
}
}
return super.dispatchTouchEvent(ev);
}
/**
* 判定是否需要隐藏
*/
private boolean isHideInput(View v, MotionEvent ev) {
if (v != null && (v instanceof EditText)) {
int[] l = {0, 0};
v.getLocationInWindow(l);
int left = l[0], top = l[1], bottom = top + v.getHeight(), right = left + v.getWidth();
if (ev.getX() > left && ev.getX() < right && ev.getY() > top && ev.getY() < bottom) {
v.requestFocus();
return false;
} else {
return true;
}
}
return false;
}
/**
* 隐藏软键盘
*/
private void HideSoftInput(IBinder token) {
if (token != null) {
InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
manager.hideSoftInputFromWindow(token, InputMethodManager.HIDE_NOT_ALWAYS);
}
}
2 . rv中
加上属性android:descendantFocusability="beforeDescendants"
,
如果不希望et获取焦点可以用blocksDescendants
(有这个需求为什么不用text view。。。没有焦点就不能输入),或子view不需要焦点时rv才获取焦点afterDescendants