Automatic popping up keyboard on start Activity

后端 未结 19 1068
醉梦人生
醉梦人生 2020-11-28 23:05

I got a relative simple question. I have an activity with a lot of EditText\'s in them. When I open the activity it automatically focusses to the first EditText and displays

19条回答
  •  一整个雨季
    2020-11-28 23:31

    I have found this simple solution that worked for me.Set these attributes in your parent layout:

    
    

    And now, when the activity starts this main layout will get focus by default.

    Also, we can remove focus from child views at runtime by giving the focus to the main layout again, like this:

    findViewById(R.id.mainLayout).requestFocus();
    

    Hope it will work for you .

提交回复
热议问题