Edittext.setmovementmethod With Linkmovement Method In Listview - Loses Ability To "click" On Rows In The List
So, basically I have a custom View that contains a ListView with a custom Adapter that has the ability to read in information from the network (dumbed down HTML) and display it on
Solution 1:
Try setting text.setFocusable(false). By removing focus from the EditText, events will be passed onto the ListView or other items.
Solution 2:
When you put an item that is focusable inside a ListView, it automatically makes the ListView not focusable. This is the behavior you are seeing.
To make them both focusable, I believe you can adjust the descendantFocusability property of the ListView.
See this question for a similar problem.
Post a Comment for "Edittext.setmovementmethod With Linkmovement Method In Listview - Loses Ability To "click" On Rows In The List"