Android EditText 自动获取焦点,并弹出键盘
2018-04-04 本文已影响8人
ChenME
- 首先在 EditText 的父布局中添加
android:focusable="true"
android:focusableInTouchMode="true"
- 在 java 代码中添加
et_input.setFocusable(true);
et_input.setFocusableInTouchMode(true);
et_input.requestFocus();
_activity.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
记录一下,方便以后使用。