Android EditText 自动获取焦点,并弹出键盘

  1. 首先在 EditText 的父布局中添加
android:focusable="true"
android:focusableInTouchMode="true"
  1. 在 java 代码中添加
et_input.setFocusable(true);
et_input.setFocusableInTouchMode(true);
et_input.requestFocus();
_activity.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

记录一下,方便以后使用。

你可能感兴趣的:(Android EditText 自动获取焦点,并弹出键盘)