Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am using 2 textview to display links from database, i managed to change link colors but i want to remove underline

email.setText(c.getString(5));
    website.setText(c.getString(6));
    Linkify.addLinks(email, Linkify.ALL);
    Linkify.addLinks(website, Linkify.ALL);

Can i do that from XML or Code ?

share|improve this question

1 Answer

up vote 47 down vote accepted
+50

You can do it in code by finding and replacing the URLSpan instances with versions that don't underline. After you call Linkify.addLinks(), call the function stripUnderlines() pasted below on each of your TextViews:

    private void stripUnderlines(TextView textView) {
        Spannable s = (Spannable)textView.getText();
        URLSpan[] spans = s.getSpans(0, s.length(), URLSpan.class);
        for (URLSpan span: spans) {
            int start = s.getSpanStart(span);
            int end = s.getSpanEnd(span);
            s.removeSpan(span);
            span = new URLSpanNoUnderline(span.getURL());
            s.setSpan(span, start, end, 0);
        }
        textView.setText(s);
    }

This requires a customized version of URLSpan which doesn't enable the TextPaint's "underline" property:

    private class URLSpanNoUnderline extends URLSpan {
        public URLSpanNoUnderline(String url) {
            super(url);
        }
        @Override public void updateDrawState(TextPaint ds) {
            super.updateDrawState(ds);
            ds.setUnderlineText(false);
        }
    }
share|improve this answer
4  
This solution assumes the text of the span is the same as the URL, which is the case for a basic http:// link. However, Linkify is smart and converts a phone number like (212) 555-1212 into the URL tel:2125551212. The new URLSpanNoUnderline call should be passed span.getURL() to retain this info, otherwise you generate bad links that cause exceptions when clicked. I've placed this proposed solution in the edit queue for your answer, since I don't have edit permissions myself. – Mike Mueller Jan 24 '11 at 10:39
Cheers Mike. I approved your edit, first time I'd ever seen that edit dialog, hope it worked. – Reuben Scratton Jan 24 '11 at 10:48
What does "text of the span is the same as the URL" mean? – Shane Oliver Mar 24 '11 at 11:24
It means that a word that you read on the screen, which is a link, can be the same or different than the actual link: <a href="myweb.com">go there</a>, here the url is "myweb.com";, while "go there" is the span – Lumis Mar 24 '11 at 14:35
This is awesome, thanks! – Leo Jul 1 '11 at 21:10
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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