How to stop EditText from gaining focus at Activity startup in Android

后端 未结 30 2773
别那么骄傲
别那么骄傲 2020-11-21 06:40

I have an Activity in Android, with two elements:

  1. EditText
  2. ListView

When my Activity

30条回答
  •  暖寄归人
    2020-11-21 07:31

    If you have another view on your activity like a ListView, you can also do:

    ListView.requestFocus(); 
    

    in your onResume() to grab focus from the editText.

    I know this question has been answered but just providing an alternative solution that worked for me :)

提交回复
热议问题