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

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

    Late but simplest answer, just add this in parent layout of the XML.

    android:focusable="true" 
    android:focusableInTouchMode="true"
    

    Upvote if it helped you ! Happy Coding :)

提交回复
热议问题