How to remove focus without setting focus to another control?

后端 未结 11 1786
终归单人心
终归单人心 2020-11-28 22:02

I like my UIs to be intuitive; each screen should naturally and unobtrusively guide the user on to the next step in the app. Barring that, I strive to make things as confusi

11条回答
  •  醉梦人生
    2020-11-28 22:06

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

    Add them to your ViewGroup that includes your EditTextView. It works properly to my Constraint Layout. Hope this help

提交回复
热议问题