OnScreen keyboard opens automatically when Activity starts

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

    This will an inappropriate behaviour

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

    but it will do it smoothly(do it in manifest for that activity)

     android:windowSoftInputMode="stateHidden"
    

提交回复
热议问题