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.
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
}
}