Edit Text in ListActivity ListView loses focus when keyboard comes up

前端 未结 7 1057
挽巷
挽巷 2020-12-03 05:09

I have searched and searched for an answer to this question and everything that looked like an answer has not worked so I guess I will just ask.

I have a couple of <

7条回答
  •  执念已碎
    2020-12-03 05:32

    All you really need to do is apply this to your ListView:

    XML:

    android:descendantFocusability="afterDescendants"
    

    Java:

    listView.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
    

提交回复
热议问题