How to clear focus for EditText?

前端 未结 8 1102
滥情空心
滥情空心 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

    You could use set focus on container view. Add to container android:focusableInTouchMode="true", android:focusable="true" and tag requestFocus example:

    
        
    
        
    
    

提交回复
热议问题