美文网首页Android开发基础知识
Android EditText 自动获取焦点,并弹出键盘

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

作者: ChenME | 来源:发表于2018-04-04 14:23 被阅读8次
    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 自动获取焦点,并弹出键盘

        本文链接:https://www.haomeiwen.com/subject/dnmkhftx.html