I have the following TextView defined:

<TextView android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:text="@string/txtCredits"
    android:autoLink="web" android:id="@+id/infoTxtCredits"
    android:layout_centerInParent="true"
    android:linksClickable="true"></TextView>

where @string/txtCredits is a string resource that contains Link text.

Android is highlighting the links in the TextView, but they do not respond to clicks. Can someone tell me what I'm doing wrong? Do I have to set an onClickListener for the TextView in my activity for something as simple as this?

Looks like it has to do with the way I define my string resource. This does not work: <string name="txtCredits"><a href="http://www.google.com">Google</a></string>

But this does: <string name="txtCredits">www.google.com</string>

Which is a bummer because I would much rather show a text link than show the full url.

link|improve this question

65% accept rate
feedback

7 Answers

up vote 85 down vote accepted

Buried in the API demos I found the solution to my problem:

Link.java:

    // text2 has links specified by putting <a> tags in the string
    // resource.  By default these links will appear but not
    // respond to user input.  To make them active, you need to
    // call setMovementMethod() on the TextView object.

    TextView t2 = (TextView) findViewById(R.id.text2);
    t2.setMovementMethod(LinkMovementMethod.getInstance());

I removed most of the attributes on my TextView to match what was in the demo.

<TextView android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:text="@string/txtCredits"
    android:id="@+id/infoTxtCredits"
    android:layout_below="@+id/imgCredits" android:layout_centerInParent="true"
    android:layout_marginTop="20dp"></TextView>

That solved it. Pretty difficult to uncover and fix.

link|improve this answer
2  
Thanks! I wasted hours on this one. I think this behaviour is really counter-intuitive. – rds Dec 10 '10 at 22:39
2  
Holy cow - I would never have found that without your answer. – Heiko Rupp Apr 10 '11 at 9:52
Unfortunately, this solution has a side effect when used with EditText. It disables action bar onLongClick and positions a cursor at the beginning of EditText. – bancer Apr 27 at 20:01
Maybe it's just me, but why would you ever do this with an EditText? – Justin May 8 at 18:41
feedback

I'm using only android:autoLink="web" and it works fine. A click on the link opens the browser and shows the correct page.

One thing I could guess is that some other view is above the link. Something that is transparent fills the whole parent but don't displays anything above the link. In this case the click goes to this view instead of the link.

link|improve this answer
Added more info above. Could it be the way I am defining the string as <string name="txtCredits"><a href="google.com">Google</a></string>;? Looks like this is allowed but it's not working for me. – Richard Apr 29 '10 at 22:46
if you use linkify auto you don't need the a href part. The OS will take the string parse it for urls and converts every url to a clickable link. But this won't result in the word google being linked to google.com. It would display www.google.com as link. – Janusz Apr 30 '10 at 6:37
using autolink works perfect for me too, plain textview without parent at all. – euther Dec 5 '11 at 0:52
android:autoLink also works great for linkifying phone numbers, addresses, and e-mail addresses (or all of the above). – cloudymusic Mar 23 at 20:38
@Janusz --------- Thanks buddy its helped me lot. :) – Tech.Rahul Apr 19 at 7:12
feedback

The above solutions didn't work for me, but the following did (and it seems a bit cleaner).
First, in the string resource, define your tag opening chevrons using the HTML entity encoding, i.e.:

&lt;a href="http://www.google.com">Google&lt;/a>

and NOT:

<a href="http://www.google.com">Google</a>

In general, encode all the chevrons in the string like that. BTW, the link must start with http://

Then (as suggested here) set this option on your TextView:

 android:linksClickable="true"

Finally, in code, do:

((TextView) findViewById(R.id.your_text_view)).setMovementMethod(LinkMovementMethod.getInstance());
((TextView) findViewById(R.id.your_text_view)).setText(Html.fromHtml(getResources().getString(R.string.string_with_links)));

That's it, no regexes or other manual hacks required.

link|improve this answer
1  
This will create an HTML Parser everytime this code is executed. Be aware of that if you use this to create links inside a list item or at other performance critical places in your app. During creation of a listitem this increases the execution time of my getView Methods off 50% – Janusz Apr 12 at 15:04
feedback

The reason you're having the problem is that it only tries to match "naked" addresses. things like "www.google.com" or "http://www.google.com".

Running your text through Html.fromHtml() should do the trick. You have to do it programatically, but it works.

link|improve this answer
1  
The links in the TextView are a different color than other text in the string, so I think they're being recognized as links. They're just not clickable :-( – Richard Apr 30 '10 at 17:49
feedback
Only what do you need to add this in text view in xml

android:autoLink="web"

<TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:autoLink="web"/>
link|improve this answer
feedback

This is how I solved clickable and Visible links in a TextView (by code)

private void setAsLink(TextView view, String url){
        Pattern pattern = Pattern.compile(url);
        Linkify.addLinks(view, pattern, "http://");
        view.setText(Html.fromHtml("<a href='http://"+url+"'>http://"+url+"</a>"));
    }
link|improve this answer
feedback

Be sure to not use setAutoLinkMask(Linkify.ALL) when using setMovementMethod(LinkMovementMethod.getInstance()) and Html.fromHTML() on properly formatted HTML links (for example, <a href="http://www.google.com/">Google</a>).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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