public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (BaseUtil.isEnterKey(actionId, event)) {
onMaterialEnter(v.getText().toString());
}
return true;
}
在按键回车同样触发onEditorAction 返回true 然后发现其他编辑框为空,让他调用其他编辑框焦点,结果会立马调回来,哪怕post()
但是软键盘没有此问题。。
因此此种情况怕是要多延长几秒了。目前没想到解决办法。
网友评论