OnScreen keyboard opens automatically when Activity starts

后端 未结 5 1586
没有蜡笔的小新
没有蜡笔的小新 2020-12-25 10:10

When my Activity with a ScrollView layout and EditTexts starts, the EditTexts get focus and the Android OnScreen keyboard opens.

5条回答
  •  情书的邮戳
    2020-12-25 10:37

    Another way is by adding on LinearLayout:

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

    Let me indicate that

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

    still does the same thing, but the cursor is still there.

提交回复
热议问题