Prevent EditText from automatically focusing

前端 未结 5 482
心在旅途
心在旅途 2021-01-14 08:43

I have an Android activity and there is one EditText in the whole layout. For some reason, whenever the activity starts, the keyboard comes up. I have tried

5条回答
  •  萌比男神i
    2021-01-14 09:21

    Try this -this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

提交回复
热议问题