首页 > 系统 > Android > 正文

Android 设置Edittext获取焦点并弹出软键盘

2019-12-12 03:09:57
字体:
来源:转载
供稿:网友

Android 设置Edittext获取焦点并弹出软键盘

/**   * EditText获取焦点并显示软键盘   */  public static void showSoftInputFromWindow(Activity activity, EditText editText) {    editText.setFocusable(true);    editText.setFocusableInTouchMode(true);    editText.requestFocus();    activity.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);  }

ps:android页面进入edittext自动获取焦点,弹出软键盘解决方法

在edittext的父布局中加入上面2个属性

android:focusable="true"android:focusableInTouchMode="true"

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持武林网!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表