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

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

    The only solution I've found is:

    • Create a LinearLayout (I dunno if other kinds of Layout's will work)
    • Set the attributes android:focusable="true" and android:focusableInTouchMode="true"

    And the EditText won't get the focus after starting the activity

提交回复
热议问题