Dont want soft keyboard to automatically show on launch

This question already has an answer here:

  • Stop EditText from gaining focus at Activity startup 46 answers

  • You can try:

    android:windowSoftInputMode="stateHidden"
    

    for your activity in AndroidManifest.xml


    将这两行添加到您的主布局。

    android:descendantFocusability="beforeDescendants"
    android:focusableInTouchMode="true"
    

    在你的布局定义(在XML文件中)添加以下选项:

    android:focusable="true" android:focusableInTouchMode="true"
    
    链接地址: http://www.djcxy.com/p/24160.html

    上一篇: android:输入活动时摆脱焦点

    下一篇: 不想让软键盘在启动时自动显示