美文网首页
Android默认软键盘不显示方法

Android默认软键盘不显示方法

作者: Acezhuyf | 来源:发表于2018-09-11 11:54 被阅读0次

    1.在AndroidMainfest.xml中的对应activity标签添加属性

    android:configChanges="orientation|keyboardHidden"

    2.如果想dialog,fragment等也有此效果,可在oncreate()方法中添加

    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

    WindowManager.LayoutParams中还有很多有意思的属性,有兴趣的同学可以研究一下它的效果

    相关文章

      网友评论

          本文标题:Android默认软键盘不显示方法

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