//第一步在布局里给EditText设置:
android:focusable="true"
android:focusableInTouchMode="true"
//第二步在Activity代码里:
//在Activity启动后会自动将焦点定位到第一个EditText并且键盘自动弹起。
et_phonenum.setFocusable(true);
et_phonenum.requestFocus();
InputMethodManager imm = (InputMethodManager) et_phonenum.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, InputMethodManager.SHOW_FORCED);
//你要弹起什么软键盘就在布局设置 什么样的属性,比如要弹出数字键盘就在布局写:
android:phoneNumber="true"
//————————————————————————完——————————————————————————-
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/118317.html