Android EditText 操作。。。

EditText请求焦点三连击。。。

 editText.setFocusable(true);
 editText.setFocusableInTouchMode(true);
 editText.requestFocus();
//如果需要输入法的话 getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
原文地址:https://www.cnblogs.com/jooy/p/8986606.html