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

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

    I needed to clear focus from all fields programmatically. I just added the following two statements to my main layout definition.

    myLayout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
    myLayout.setFocusableInTouchMode(true);
    

    That's it. Fixed my problem instantly. Thanks, Silver, for pointing me in the right direction.

提交回复
热议问题