ListView: TextView with LinkMovementMethod makes list item unclickable?

前端 未结 11 743
野的像风
野的像风 2020-11-29 17:33

What I want to do: A list with messages like this:

and here is the mnessage the user writes, that will wrap nicely to the next line.

11条回答
  •  清酒与你
    2020-11-29 18:06

    Here is quick fix that makes ListView items and TextView UrlSpans clickable:

       private class YourListadapter extends BaseAdapter {
    
           @Override
           public View getView(int position, View convertView, ViewGroup parent) {
               ((ViewGroup)convertView).setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
    
               return convertView
           }
    
        }
    

提交回复
热议问题