How to clear focus for EditText?

前端 未结 8 1103
滥情空心
滥情空心 2021-01-30 12:54

I have an activity with a search box (EditText) on the top, and a ListView below. Whenever the activity starts, the EditText always has focus and bring up the keybo

8条回答
  •  说谎
    说谎 (楼主)
    2021-01-30 13:38

    Add the android:focusable="true" and android:focusableInTouchMode="true" elements in the parent layout of EditText as follow;

    android:id="@+id/linearLayout7" android:layout_width="fill_parent"
    
    android:layout_height="wrap_content"
    
    android:focusable="true" android:focusableInTouchMode="true">
    

    I think, it should help you.

提交回复
热议问题