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

后端 未结 30 2801
别那么骄傲
别那么骄傲 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:17

    I had tried several answers individually but the focus is still at the EditText. I only managed to solve it by using two of the below solution together.

    
    

    ( Reference from Silver https://stackoverflow.com/a/8639921/15695 )

    and remove

     
    

    at EditText

    ( Reference from floydaddict https://stackoverflow.com/a/9681809 )

提交回复
热议问题