I have a custom listview in android, with each item consisting of several text views. One of the text views contains HTML text, some of which contains <a> tags. I am using the HTML.fromHTML() method to translate this into a String readable by the textView, but the links are not clickable. If I enable them to have focus, then the list items are no longer clickable and the links still do not work.

So how do I make the links clickable, and keep the normal click functionality if a list item is clicked anywhere other than on a link?

EDIT: My code:

    if (convertView == null) {
        LayoutInflater vi = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = vi.inflate(R.layout.email_list_item, null);
    }


    TextView contentView = (TextView) convertView
            .findViewById(R.id.content);

    Email e = items.get(position);

    CharSequence content = "";
    if (e.getContent() != null) {
        content = Html.fromHtml(e.getContent());
    }

    contentView.setText(content);
    return convertView;
link|improve this question
feedback

1 Answer

You need to set AutoLinkMask

textcontent.setText(Html.fromHtml(text.get_text()));
textcontent.setAutoLinkMask(Linkify.WEB_URLS);
link|improve this answer
This stops the list items themselves being clickable, I still want them to hear the click event if it isnt a link being clicked. – leedsunited92 Feb 9 at 23:55
1  
Can you post your code? – thinksteep Feb 9 at 23:57
Added it to the original post. – leedsunited92 Feb 10 at 19:08
Any more ideas? – leedsunited92 Apr 21 at 12:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.