在响应中调用API后我写了这个。它无法正常工作
ProgressOverlay.removeProgress();
et_name.clearFocus();
et_name.setFocusable(true);
et_name.setFocusableInTouchMode(true);
et_name.requestFocusFromTouch();
et_name.postDelayed(new Runnable() {
@Override
public void run() {
InputMethodManager inputMethodManager = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.showSoftInput(et_name, 0);
}
}, 50);
答案 0 :(得分:0)
希望这有效
inputMethodManager.showSoftInput(et_name, 2);