OnScreen keyboard opens automatically when Activity starts

后端 未结 5 1580
没有蜡笔的小新
没有蜡笔的小新 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:44

    Android opens the OnScreenKeyboard automatically if you have an EditText focussed when the Activity starts.

    You can prevent that by adding following into your Activity's onCreate method.

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

提交回复
热议问题